Skip to content

Commit

Permalink
TERA-1747: Rewrite rules for minor/major patching
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-wiffen committed Dec 8, 2024
1 parent ef18995 commit d12e3f4
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@
"timezone": "Australia/Sydney",

// Update rules.
"prCreation": "status-success",
"automerge": true,
// Do not merge major updates.
"packageRules": [{
"groupName": "All Minor and Patch Updates",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
}]
"packageRules": [
{
"groupName": "All Minor and Patch Updates",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr"
},
{
"groupName": "Major Updates",
"automerge": false,
"prCreation": "immediate"
}
]
}

0 comments on commit d12e3f4

Please sign in to comment.