mirror of
https://github.com/imjasonh/esp32
synced 2026-07-06 23:52:24 +00:00
Add Dependabot config: weekly grouped updates for GHA + Cargo deps
Three ecosystems: GitHub Actions (workflow files), firmware Cargo deps (root), publisher Cargo deps (tools/publisher). Each ecosystem groups all updates into a single weekly PR. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
6596cfe0e0
commit
f94f0f9f8a
1 changed files with 32 additions and 0 deletions
32
.github/dependabot.yml
vendored
Normal file
32
.github/dependabot.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Weekly dep bumps, grouped per ecosystem so we get one PR per category
|
||||
# (one for GHA action versions, one for firmware Cargo deps, one for the
|
||||
# publisher Cargo deps) instead of N PRs per week.
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
schedule:
|
||||
interval: weekly
|
||||
groups:
|
||||
gha:
|
||||
patterns:
|
||||
- "*"
|
||||
|
||||
- package-ecosystem: cargo
|
||||
directory: /
|
||||
schedule:
|
||||
interval: weekly
|
||||
groups:
|
||||
firmware:
|
||||
patterns:
|
||||
- "*"
|
||||
|
||||
- package-ecosystem: cargo
|
||||
directory: /tools/publisher
|
||||
schedule:
|
||||
interval: weekly
|
||||
groups:
|
||||
publisher:
|
||||
patterns:
|
||||
- "*"
|
||||
Loading…
Add table
Add a link
Reference in a new issue