1
0
Fork 0
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:
Jason Hall 2026-05-02 14:41:15 -04:00
parent 6596cfe0e0
commit f94f0f9f8a

32
.github/dependabot.yml vendored Normal file
View 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:
- "*"