Skip to content

Commit

Permalink
Exclude typescript from minor dependency updates by Renovate
Browse files Browse the repository at this point in the history
This makes it necessary to split the non-major update group into minor and patch groups
  • Loading branch information
manuelwedler committed Mar 17, 2021
1 parent 31831ab commit 27b8f73
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,18 @@
"packagePatterns": [
"*"
],
"updateTypes": ["minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
"updateTypes": ["patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "all non-major and non-minor dependencies",
"groupSlug": "all-patch"
},
{
"packagePatterns": [
"*"
],
"excludePackageNames": ["typescript"],
"updateTypes": ["minor"],
"groupName": "all minor dependencies",
"groupSlug": "all-minor"
},
{
"updateTypes": ["major"],
Expand Down

0 comments on commit 27b8f73

Please sign in to comment.