Skip to content

Commit 5f56966

Browse files
committed
feat(deps) add 7d cooldown for external deps and 0 for internal
1 parent e338676 commit 5f56966

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,22 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7+
cooldown:
8+
default-days: 7
9+
- package-ecosystem: "gradle"
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+
groups:
14+
internal-deps:
15+
patterns:
16+
- "cloud.stackit*"
17+
external-deps:
18+
patterns:
19+
- "*"
20+
exclude-patterns:
21+
# should be covered by listing internal-deps first (https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#groups--)
22+
# but listing it here to be explicit
23+
- "cloud.stackit*"
24+
cooldown:
25+
default-days: 7

0 commit comments

Comments
 (0)