Skip to content

Commit

Permalink
feat(renovate): exclude non-major upgrade on Next versions (#1775)
Browse files Browse the repository at this point in the history
## Proposed change

Reduce the number of Renovate's PR on Next branch
  • Loading branch information
kpanot committed May 13, 2024
2 parents 8f3bcfd + 8044552 commit 838761d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .renovaterc.json5
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,22 @@
],
"enabled": false
},
{
// Reduce the updates on Next to let them handle by the Main branch
"matchUpdateTypes": [
"bump",
"digest",
"lockFileMaintenance",
"minor",
"patch",
"pinDigest"
],
"matchBaseBranches": [
"/.*-next$/"
],
"enabled": false
},

{
// This rule disable the upgrade of the gaurav-nelson/github-action-markdown-link-check
// TODO: re-activate the upgrade when the following issue is fixed: gaurav-nelson/github-action-markdown-link-check#200
Expand Down

0 comments on commit 838761d

Please sign in to comment.