Skip to content

Commit 5687209

Browse files
authored
Dont use globbing for dependabot (#4240)
It seems to cause the job to time out, probably scanning the embedded submodule or all of our generated code directories for more go.mod's. Instead just list the 3 we have explicitly.
1 parent 5478ba3 commit 5687209

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ updates:
88
# ASO v2 controller
99
- package-ecosystem: "gomod"
1010
directories:
11-
- "/v2/**/*"
11+
# These are not recursive, need to list each directory individually.
12+
# We don't use wildcard/globbing because it times out w/ our large repo.
13+
- "/v2"
14+
- "/v2/cmd/asoctl"
15+
- "/v2/tools/generator"
1216
schedule:
1317
interval: "weekly"
1418
rebase-strategy: "disabled"

0 commit comments

Comments
 (0)