Skip to content

Commit 26a5f36

Browse files
authored
ci(dependabot): only group minor and patch updates (#192)
1 parent 6f99576 commit 26a5f36

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

.github/dependabot.yml

+22-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
4-
directory: "/"
3+
- package-ecosystem: 'npm'
4+
directory: '/'
55
schedule:
6-
interval: "monthly"
6+
interval: 'monthly'
77
groups:
88
production-dependencies:
9-
dependency-type: "production"
9+
dependency-type: 'production'
10+
update-types:
11+
- minor
12+
- patch
1013
development-dependencies:
11-
dependency-type: "development"
14+
dependency-type: 'development'
15+
update-types:
16+
- minor
17+
- patch
1218
commit-message:
13-
prefix: "fix"
14-
prefix-development: "build"
15-
include: "scope"
16-
- package-ecosystem: "github-actions"
17-
directory: "/"
19+
prefix: 'fix'
20+
prefix-development: 'build'
21+
include: 'scope'
22+
- package-ecosystem: 'github-actions'
23+
directory: '/'
1824
schedule:
19-
interval: "monthly"
25+
interval: 'monthly'
26+
groups:
27+
github-actions:
28+
update-types:
29+
- minor
30+
- patch

0 commit comments

Comments
 (0)