Skip to content

Commit

Permalink
chore: Group dependabot PRs for ease of maintenance (#173)
Browse files Browse the repository at this point in the history
Ref: https://github.blog/2023-08-24-a-faster-way-to-manage-version-updates-with-dependabot/

- Group all hashicorp dependencies together
- Group all atlantis dependencies together
- Group everything else together

This may result in bigger PRs, but the groups should split by tendency to break things
  • Loading branch information
vincenthsh authored Sep 13, 2023
1 parent 52211f8 commit edcd0b2
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- bot/merge
commit-message:
prefix: "chore: "
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- bot/merge
commit-message:
prefix: "chore: "
groups:
atlantis:
patterns:
- "github.com/runatlantis/*"
terraform:
patterns:
- "github.com/hashicorp/*"
gomod:
patterns:
- "*"

0 comments on commit edcd0b2

Please sign in to comment.