Skip to content

Commit

Permalink
chore(.github): group dependabot PRs and reduce frequency for thirdpary
Browse files Browse the repository at this point in the history
  • Loading branch information
mafredri committed Nov 7, 2024
1 parent 02080e9 commit 4a551ae
Showing 1 changed file with 34 additions and 5 deletions.
39 changes: 34 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
version: 2
updates:
- package-ecosystem: 'gomod'
# Track in case we ever add dependencies.
- package-ecosystem: "gomod"
directories:
- '/'
- '/internal/examples'
- '/internal/thirdparty'
- "/"
schedule:
interval: 'weekly'
interval: "weekly"
commit-message:
prefix: "chore"

# Keep examples up-to-date.
- package-ecosystem: "gomod"
directories:
- "/internal/examples"
schedule:
interval: "monthly"
commit-message:
prefix: "chore"
labels: []
groups:
examples:
patterns:
- "*"

# Tests, these are not critical but we should keep them up-to-date.
- package-ecosystem: "gomod"
directories:
- "/internal/thirdparty"
schedule:
interval: "monthly"
commit-message:
prefix: "chore"
labels: []
groups:
thirdparty:
patterns:
- "*"

0 comments on commit 4a551ae

Please sign in to comment.