Skip to content

Commit f0a474c

Browse files
committed
ci: group all non-major updates together
1 parent 2393db9 commit f0a474c

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

.github/dependabot.yaml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
1-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2-
31
version: 2
42
updates:
5-
- package-ecosystem: "github-actions"
6-
directory: "/"
7-
schedule:
8-
interval: "monthly"
9-
time: "09:00"
10-
timezone: "Europe/Oslo"
11-
3+
# Check for updates to nuget packages
124
- package-ecosystem: "nuget"
135
directory: "/"
146
schedule:
15-
interval: "monthly"
16-
time: "09:00"
17-
timezone: "Europe/Oslo"
7+
interval: 'cron'
8+
cronjob: '0 8 * * MON#1'
9+
timezone: 'Europe/Oslo'
1810
commit-message:
1911
prefix: "build:"
2012
groups:
21-
all:
13+
# Group all non-major updates together
14+
minor-patch-updates:
2215
patterns:
2316
- "*"
17+
update-types:
18+
- "minor"
19+
- "patch"
20+
21+
# Check for updates to GitHub Actions
22+
- package-ecosystem: "github-actions"
23+
directory: "/"
24+
schedule:
25+
interval: 'cron'
26+
cronjob: '0 8 * * MON#1'
27+
timezone: 'Europe/Oslo'
28+
commit-message:
29+
prefix: "ci:"

0 commit comments

Comments
 (0)