Skip to content

Commit 6de66b8

Browse files
committed
feat(deps) add 7d dependency cooldown for external deps, 0 for internal
1 parent 3101b0d commit 6de66b8

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ updates:
1111
commit-message:
1212
prefix: "chore"
1313
include: "scope"
14+
groups:
15+
internal-deps:
16+
patterns:
17+
- "^github.com/stackitcloud/"
18+
external-deps:
19+
patterns:
20+
- ".*"
21+
exclude-patterns:
22+
# should be covered by listing internal-deps first (https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#groups--)
23+
# but listing it here to be explicit
24+
- "^github.com/stackitcloud/"
25+
cooldown:
26+
default-days: 7
1427
- package-ecosystem: "gomod"
1528
directory: "/sdk"
1629
schedule:
@@ -22,6 +35,19 @@ updates:
2235
commit-message:
2336
prefix: "chore"
2437
include: "scope"
38+
groups:
39+
internal-deps:
40+
patterns:
41+
- "^github.com/stackitcloud/"
42+
external-deps:
43+
patterns:
44+
- ".*"
45+
exclude-patterns:
46+
# should be covered by listing internal-deps first (https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#groups--)
47+
# but listing it here to be explicit
48+
- "^github.com/stackitcloud/"
49+
cooldown:
50+
default-days: 7
2551
- package-ecosystem: "github-actions"
2652
directory: "/"
2753
schedule:
@@ -33,6 +59,8 @@ updates:
3359
commit-message:
3460
prefix: "chore"
3561
include: "scope"
62+
cooldown:
63+
default-days: 7
3664
- package-ecosystem: "docker"
3765
directory: "/.devcontainer"
3866
schedule:

0 commit comments

Comments
 (0)