Skip to content

Commit 9b8bc8e

Browse files
authored
Improve dependabot config with weekly schedule, grouping, and cooldown (#74)
1 parent 027cabe commit 9b8bc8e

1 file changed

Lines changed: 28 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
version: 2
2+
23
updates:
3-
- package-ecosystem: 'npm'
4-
directory: '/'
4+
- package-ecosystem: "npm"
5+
directory: "/"
56
schedule:
6-
interval: 'monthly'
7+
interval: "weekly"
8+
open-pull-requests-limit: 20
9+
cooldown:
10+
default-days: 3
11+
semver-major-days: 7
12+
groups:
13+
backstage:
14+
applies-to: version-updates
15+
patterns:
16+
- "@backstage/*"
17+
minor-and-patch:
18+
applies-to: version-updates
19+
update-types:
20+
- "minor"
21+
- "patch"
22+
exclude-patterns:
23+
- "@backstage/*"
24+
25+
- package-ecosystem: "github-actions"
26+
directory: "/"
27+
schedule:
28+
interval: "weekly"
29+
open-pull-requests-limit: 20
30+
cooldown:
31+
default-days: 3

0 commit comments

Comments
 (0)