Skip to content

Commit bff854d

Browse files
committed
chore: standardize Dependabot with grouping and labels
Add grouped PRs (actions grouped by pattern, pip/npm/docker by update-type). Monday schedule, conventional commit prefixes, dependency labels.
1 parent 5132fad commit bff854d

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,47 @@
1+
---
12
version: 2
23
updates:
34
- package-ecosystem: github-actions
45
directory: /
56
schedule:
67
interval: weekly
8+
day: monday
79
commit-message:
810
prefix: "ci"
11+
groups:
12+
github-actions:
13+
patterns:
14+
- "*"
15+
labels:
16+
- dependencies
17+
- github-actions
918
- package-ecosystem: pip
1019
directory: /
1120
schedule:
1221
interval: weekly
22+
day: monday
1323
commit-message:
1424
prefix: "chore"
25+
groups:
26+
pip-minor-patch:
27+
update-types:
28+
- minor
29+
- patch
30+
labels:
31+
- dependencies
32+
- python
1533
- package-ecosystem: docker
1634
directory: /
1735
schedule:
1836
interval: weekly
37+
day: monday
1938
commit-message:
2039
prefix: "chore"
40+
groups:
41+
docker-minor-patch:
42+
update-types:
43+
- minor
44+
- patch
45+
labels:
46+
- dependencies
47+
- docker

0 commit comments

Comments
 (0)