Skip to content

Commit

Permalink
chore: Configure renovate to respect semver
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 22, 2024
1 parent 7f19eb0 commit 0878b4d
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@
"extends": ["config:recommended"],
"automergeStrategy": "squash",
"automergeType": "pr",
"separateMinorPatch": true,
"separateMajorMinor": true,
"packageRules": [
{
"matchCurrentVersion": "< 1.0.0",
"separateMinorPatch": true,
"patch": {
"groupName": "all non-breaking updates",
"groupSlug": "non-breaking"
}
},
{
"matchCurrentVersion": ">= 1.0.0",
"minor": {
"groupName": "all non-breaking updates",
"groupSlug": "non-breaking"
}
},
{
"groupName": "npm",
"matchDatasources": ["npm"]
Expand Down

0 comments on commit 0878b4d

Please sign in to comment.