-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make renovatebot's ignorePath and grouping of non-major updates …
…work correctly (#505)
- Loading branch information
1 parent
f3325d3
commit e4f3c57
Showing
1 changed file
with
3 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,20 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"globalExtends": [ | ||
"config:base" | ||
], | ||
"extends": ["group:allNonMajor", "schedule:monthly"], | ||
"packageRules": [ | ||
{ | ||
"description": "Create a PR whenever there is a new major version", | ||
"matchUpdateTypes": [ | ||
"major" | ||
] | ||
}, | ||
{ | ||
"description": "Create a PR grouping all non-major dependencies", | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"groupName": "all non-major dependencies", | ||
"groupSlug": "all-minor-patch" | ||
} | ||
], | ||
"ignorePaths": [ | ||
"docs/**", | ||
"experimental/**" | ||
], | ||
"pinVersions": false, | ||
"schedule": [ | ||
"every 3 months on the first day of the month" | ||
] | ||
"pinVersions": false | ||
} |