Skip to content

Commit

Permalink
ci: let dependabot update k8s deps as a group of deps
Browse files Browse the repository at this point in the history
Given that this set of dependencies need to be updated at once, they
were ignored by dependabot's config. However, with dependabot now having
support for grouped updates, we can leverage the feature to let the bot
update them all at once.

Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh committed Aug 1, 2023
1 parent 9e9a347 commit 8e47029
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ updates:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: "disabled"
ignore:
# k8s dependencies will be updated manually all at once
- dependency-name: "k8s.io/*"
- dependency-name: "sigs.k8s.io/*"
groups:
k8s-deps:
patterns:
- "k8s.io/*"
- "sigs.k8s.io/*"

- package-ecosystem: github-actions
directory: /
Expand Down

0 comments on commit 8e47029

Please sign in to comment.