Skip to content

Commit 61ba9df

Browse files
committed
ci: add grouping to dependabot PRs for minor/patch updates
1 parent 34446b3 commit 61ba9df

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
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:
83
- package-ecosystem: "github-actions"
94
directory: "/"
105
schedule:
11-
interval: weekly
6+
interval: "weekly"
127
open-pull-requests-limit: 10
138
commit-message:
14-
prefix: "GitHub Actions"
15-
labels:
16-
- dependencies
9+
prefix: "ci: GitHub Actions"
10+
labels: ["dependencies"]
1711
- package-ecosystem: npm
1812
directory: "/"
1913
schedule:
20-
interval: weekly
14+
interval: "weekly"
15+
groups:
16+
version-updates:
17+
applies-to: version-updates
18+
patterns: ["*"]
19+
update-types: ["minor", "patch"]
2120
open-pull-requests-limit: 10
2221
commit-message:
23-
prefix: "npm"
24-
labels:
25-
- dependencies
22+
prefix: "chore"
23+
labels: ["dependencies"]

0 commit comments

Comments
 (0)