From 8b0818eba63fd7a02b641b5d5a957b90dacab38b Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 24 Mar 2026 16:15:02 +0000 Subject: [PATCH] feat: add major-version update rules for GitHub Actions and npm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds explicit packageRules for major version bumps on both github-actions and npm managers. Previously only minor/patch updates were configured, requiring manual audits when major versions shipped (e.g. PRI-802 where actions/setup-node v4→v6 had to be found and fixed by hand). With these rules, Renovate will surface major bumps as PRs automatically. automerge is false for both — major updates go through the normal dual-approval workflow. Co-Authored-By: Paperclip --- renovate-config.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/renovate-config.json b/renovate-config.json index 7e4a7f1..d4d00d3 100644 --- a/renovate-config.json +++ b/renovate-config.json @@ -11,10 +11,22 @@ "matchUpdateTypes": ["minor", "patch"], "groupName": "npm minor and patch" }, + { + "matchManagers": ["npm"], + "matchUpdateTypes": ["major"], + "groupName": "npm major updates", + "automerge": false + }, { "matchManagers": ["github-actions"], "matchUpdateTypes": ["minor", "patch"], "groupName": "github-actions minor and patch" + }, + { + "matchManagers": ["github-actions"], + "matchUpdateTypes": ["major"], + "groupName": "github-actions major updates", + "automerge": false } ] }