Commit 8087e33
fix(ci): group Dependabot updates into one PR per ecosystem (#84)
This repo's `dependabot.yml` has no `groups:` block, so **Dependabot
opens one PR per dependency**.
Each of those PRs re-fires *every* workflow in the repo. So one
estate-wide bump — say `actions/checkout` 7.0.0 → 7.0.1 — fans out into
N PRs × M workflow runs worth of notifications. Combined with workflows
that fail, that is a large amplifier of the notification flood.
### Fix
Add `groups:` with `patterns: ["*"]`, so the same bump arrives as a
**single** PR:
```yaml
groups:
github-actions:
patterns:
- "*"
```
This matches the **223 estate repos that already group** (exemplar:
`aerie`). 50 did not — this is one of them.
Update frequency and ecosystems are unchanged; only the PR batching
changes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>1 parent a3b76a3 commit 8087e33
1 file changed
Lines changed: 35 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
9 | 16 | | |
10 | 17 | | |
11 | 18 | | |
12 | 19 | | |
13 | 20 | | |
14 | 21 | | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
15 | 29 | | |
16 | 30 | | |
17 | 31 | | |
18 | 32 | | |
19 | 33 | | |
20 | 34 | | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
21 | 42 | | |
22 | 43 | | |
23 | 44 | | |
24 | 45 | | |
25 | 46 | | |
26 | 47 | | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
27 | 55 | | |
28 | 56 | | |
29 | 57 | | |
30 | 58 | | |
31 | 59 | | |
32 | 60 | | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
0 commit comments