intel-device-plugins-for-ku.../.github/dependabot.yml
Mikko Ylinen a69e0e0caa dependabot: group all github-actions updates
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>
2025-03-17 13:08:32 +02:00

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:
- "*"