Skip to content
This repository was archived by the owner on May 12, 2025. It is now read-only.

Commit dd26670

Browse files
authored
chore(ci): reduce dependabot spam by splitting out updates (#11)
1 parent c432821 commit dd26670

File tree

1 file changed

+34
-3
lines changed

1 file changed

+34
-3
lines changed

.github/dependabot.yml

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,57 @@
11
version: 2
22
updates:
3+
# Rollkit specific updates
4+
# Trigger daily, group minor and patch updates
35
- package-ecosystem: github-actions
46
directory: "/"
57
schedule:
68
interval: daily
7-
open-pull-requests-limit: 10
9+
allow:
10+
- dependency-name: "rollkit/*"
811
labels:
912
- T:dependencies
10-
# Group all patch updates into a single PR
1113
groups:
1214
patch-updates:
1315
applies-to: version-updates
1416
update-types:
1517
- "patch"
18+
- "minor"
1619
- package-ecosystem: gomod
1720
directory: "/"
1821
schedule:
1922
interval: daily
20-
open-pull-requests-limit: 10
23+
allow:
24+
- dependency-name: "github.com/rollkit/*"
2125
labels:
2226
- T:dependencies
2327
# Group all patch updates into a single PR
28+
groups:
29+
patch-updates:
30+
applies-to: version-updates
31+
update-types:
32+
- "patch"
33+
- "minor"
34+
# All other dependencies
35+
# Trigger weekly, group patch updates
36+
- package-ecosystem: github-actions
37+
directory: "/"
38+
schedule:
39+
interval: weekly
40+
open-pull-requests-limit: 10
41+
labels:
42+
- T:dependencies
43+
groups:
44+
patch-updates:
45+
applies-to: version-updates
46+
update-types:
47+
- "patch"
48+
- package-ecosystem: gomod
49+
directory: "/"
50+
schedule:
51+
interval: weekly
52+
open-pull-requests-limit: 10
53+
labels:
54+
- T:dependencies
2455
groups:
2556
patch-updates:
2657
applies-to: version-updates

0 commit comments

Comments
 (0)