Skip to content

Commit

Permalink
dependabot: group mainly external repos (#2391)
Browse files Browse the repository at this point in the history
Our own repos are mostly git depedencencies and often require manual
intervention. This is an attempt to split out updates of third party
depedencencies which are more likely to succeed without intervention.
  • Loading branch information
sveitser authored Dec 12, 2024
1 parent 0fed49e commit 214e46c
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,32 @@ updates:

- package-ecosystem: "cargo"
directory: "/"
# Group all updates together
groups:
# The `all` group should include mainly updates from crates.io which are
# more likely to succeed without intervention.
all:
patterns:
- "*"
- "*"
exclude-patterns:
- "ark-*"
- "cdn-*"
- "hotshot-*"
- "jf-*"
- "marketplace-*"
ark:
patterns:
- "ark-*"
cdn:
patterns:
- "cdn-*"
hotshot:
patterns:
- "hotshot-*"
jf:
patterns:
- "jf-*"
marketplace:
patterns:
- "marketplace-*"
schedule:
interval: "daily"

0 comments on commit 214e46c

Please sign in to comment.