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 bd75926
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
version: 2
updates:
# Track in case we ever add dependencies.
- package-ecosystem: 'gomod'
directories:
- '/'
schedule:
interval: 'weekly'
commit-message:
prefix: 'chore'

# Keep examples up-to-date.
- package-ecosystem: 'gomod'
directories:
- '/internal/examples'
- '/internal/thirdparty'
schedule:
interval: 'weekly'
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 bd75926

Please sign in to comment.