Skip to content

Commit 7710c94

Browse files
committed
Use a wildcard to exclude repo-config from dependabot groups
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`. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 92ee23c commit 7710c94

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)