Skip to content

Commit c13b314

Browse files
committed
feat(deps) configure 7 day cooldown for external dependencies
1 parent 1931b74 commit c13b314

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/dependabot.yml

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

0 commit comments

Comments
 (0)