Skip to content

Commit 9348244

Browse files
committed
ci: define Dependabot groups
1 parent 3e5f6f7 commit 9348244

File tree

1 file changed

+43
-12
lines changed

1 file changed

+43
-12
lines changed

.github/dependabot.yml

Lines changed: 43 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,51 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
# root
9-
- package-ecosystem: 'github-actions'
3+
- package-ecosystem: github-actions
104
directory: '/'
115
schedule:
12-
interval: 'monthly'
13-
- package-ecosystem: 'npm'
6+
interval: monthly
7+
commit-message:
8+
prefix: 'build'
9+
include: scope
10+
11+
- package-ecosystem: npm
1412
directory: '/'
1513
schedule:
16-
interval: 'monthly'
17-
- package-ecosystem: 'pip'
14+
interval: monthly
15+
commit-message:
16+
prefix: 'build'
17+
include: scope
18+
groups:
19+
dev-patches:
20+
applies-to: version-updates
21+
dependency-type: development
22+
update-types:
23+
- patch
24+
25+
- package-ecosystem: pip
1826
directory: '/'
1927
schedule:
20-
interval: 'monthly'
28+
interval: monthly
29+
commit-message:
30+
prefix: 'build'
31+
include: scope
32+
groups:
33+
mkdocs:
34+
applies-to: version-updates
35+
patterns:
36+
- 'mkdocs*'
37+
update-types:
38+
- patch
39+
- minor
40+
development:
41+
applies-to: version-updates
42+
dependency-type: development
43+
update-types:
44+
- patch
45+
- minor
46+
production:
47+
applies-to: version-updates
48+
dependency-type: production
49+
update-types:
50+
- patch
51+
- minor

0 commit comments

Comments
 (0)