Skip to content

Commit 6e352f1

Browse files
committed
fix: add wildcard dirs to dependabot
Signed-off-by: Mateusz Urbanek <[email protected]>
1 parent 3cad7ae commit 6e352f1

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

Diff for: .github/dependabot.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ enable-beta-ecosystems: true
33
updates:
44

55
- package-ecosystem: "gomod"
6-
directory: "/"
6+
directories:
7+
- "**/*"
78
schedule:
89
interval: "weekly"
9-
groups: # batch updates together for fewer dependabot PRs
10+
groups:
1011
golang-dependencies:
1112
patterns:
1213
- "github.com/golang*"
@@ -18,11 +19,15 @@ updates:
1819
exclude-patterns:
1920
# controller-runtime has history of breaking API changes more often than other k8s projects
2021
- "sigs.k8s.io/controller-runtime"
21-
github-dependencies:
22-
patterns:
23-
- "github.com*"
2422

2523
- package-ecosystem: "docker"
26-
directory: "/"
24+
directories:
25+
- "**/*"
26+
schedule:
27+
interval: "weekly"
28+
29+
- package-ecosystem: "github-actions"
30+
directories:
31+
- "**/*"
2732
schedule:
2833
interval: "weekly"

0 commit comments

Comments
 (0)