Skip to content

Commit 66a663c

Browse files
author
Kenneth Rosario Acevedo
committed
fix: make renovatebot's ignorePath and grouping of non-major updates work correctly
1 parent f3325d3 commit 66a663c

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.github/renovate.json

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,20 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
3+
"globalExtends": [
44
"config:base"
55
],
6+
"extends": ["group:allNonMajor", "schedule:monthly"],
67
"packageRules": [
78
{
89
"description": "Create a PR whenever there is a new major version",
910
"matchUpdateTypes": [
1011
"major"
1112
]
12-
},
13-
{
14-
"description": "Create a PR grouping all non-major dependencies",
15-
"matchPackagePatterns": [
16-
"*"
17-
],
18-
"matchUpdateTypes": [
19-
"minor",
20-
"patch"
21-
],
22-
"groupName": "all non-major dependencies",
23-
"groupSlug": "all-minor-patch"
2413
}
2514
],
2615
"ignorePaths": [
2716
"docs/**",
2817
"experimental/**"
2918
],
30-
"pinVersions": false,
31-
"schedule": [
32-
"every 3 months on the first day of the month"
33-
]
19+
"pinVersions": false
3420
}

0 commit comments

Comments
 (0)