mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

As we track pinned github actions, we get an update every time a new tag appears for any action we use. Furthermore, as we have a scheduled run on Sundays, we get many single action update PRs that have accumulated during the week to work with on Monday mornings. Group all github-actions updates to a single PR to help with PR merges and to avoid unnecessary CI runs. Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
23 lines
550 B
YAML
23 lines
550 B
YAML
version: 2
|
|
updates:
|
|
# Dependencies listed in go.mod
|
|
- package-ecosystem: "gomod"
|
|
directory: "/" # Location of package manifests
|
|
schedule:
|
|
interval: "daily"
|
|
ignore:
|
|
- dependency-name: "k8s.io/*"
|
|
|
|
# Check updates to action versions in .github/workflows
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
# Check for updates to GitHub Actions every week on Sunday
|
|
interval: "weekly"
|
|
day: "sunday"
|
|
groups:
|
|
# Group PRs
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|