Skip to content

Commit 429378b

Browse files
authored
Use a wildcard to exclude repo-config from dependabot groups (frequenz-floss#385)
It looks like dependabot considers optional dependencies as part of the dependency name, so `frequenz-repo-config[lib]` doesn't match the exclude rule for `frequenz-repo-config`.
2 parents 92ee23c + 7710c94 commit 429378b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ updates:
3030
- "minor"
3131
- "patch"
3232
exclude-patterns:
33-
- "frequenz-repo-config"
33+
- "frequenz-repo-config*"
3434
optional:
3535
dependency-type: "development"
3636
update-types:
3737
- "minor"
3838
- "patch"
3939
exclude-patterns:
40-
- "frequenz-repo-config"
40+
- "frequenz-repo-config*"
4141

4242
- package-ecosystem: "github-actions"
4343
directory: "/"

0 commit comments

Comments
 (0)