Skip to content

Commit 9a8eeeb

Browse files
hyperpolymathclaude
andcommitted
fix(ci): group Dependabot updates into one PR per ecosystem
Without a groups: block Dependabot opens ONE PR PER DEPENDENCY. Every one of those PRs re-fires every workflow in the repo, so a single estate-wide bump (e.g. actions/checkout 7.0.0 -> 7.0.1) fans out into N PRs x M workflow runs of notifications. This was a measurable amplifier of the notification storm. Grouping with patterns: ["*"] makes the same bump a single PR, matching the 223 estate repos that already do this. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e27df45 commit 9a8eeeb

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ updates:
99
labels:
1010
- "dependencies"
1111
- "github-actions"
12+
# Batch this ecosystem into a single PR. Ungrouped, Dependabot
13+
# opens one PR per dependency, and each PR re-fires every
14+
# workflow in the repo.
15+
groups:
16+
github-actions:
17+
patterns:
18+
- "*"

0 commit comments

Comments
 (0)