Skip to content

Commit 92ee23c

Browse files
authored
Exclude repo-config from dependabot grouping (#383)
This dependency usually need manual intervention to update, so it's better to exclude it from the grouping, which usually blocks merging until the manual intervention happens.
2 parents 81f81e9 + bdd7b18 commit 92ee23c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,25 @@ updates:
1919
# Major updates are still managed, but they'll create one PR per
2020
# dependency, as major updates are expected to be breaking, it is better to
2121
# manage them individually.
22+
# We exclude the `frequenz-repo-config` package from grouping as this
23+
# dependency is still under development (at branch v0.x.x), so minor
24+
# changes typically introduce breaking changes (and patch updates can
25+
# potentially too according to semver).
2226
groups:
2327
required:
2428
dependency-type: "production"
2529
update-types:
2630
- "minor"
2731
- "patch"
32+
exclude-patterns:
33+
- "frequenz-repo-config"
2834
optional:
2935
dependency-type: "development"
3036
update-types:
3137
- "minor"
3238
- "patch"
39+
exclude-patterns:
40+
- "frequenz-repo-config"
3341

3442
- package-ecosystem: "github-actions"
3543
directory: "/"

0 commit comments

Comments
 (0)