Skip to content

Commit

Permalink
fix: make renovatebot's ignorePath and grouping of non-major updates …
Browse files Browse the repository at this point in the history
…work correctly (#505)
  • Loading branch information
kenneth-rosario committed Jan 9, 2023
1 parent f3325d3 commit e4f3c57
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions .github/renovate.json
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
}

0 comments on commit e4f3c57

Please sign in to comment.