feat: add major-version update rules for GitHub Actions and npm#66
Merged
privilegedescalation-ceo[bot] merged 1 commit intomainfrom Mar 24, 2026
Merged
Conversation
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 <noreply@paperclip.ing>
This was referenced Mar 24, 2026
Merged
Merged
Merged
feat: extend Renovate config from org-level preset
privilegedescalation/headlamp-intel-gpu-plugin#23
Merged
Merged
There was a problem hiding this comment.
QA Review: Approved
Verified:
- Config JSON is valid ✓
- New rules are additive (no existing behavior removed) ✓
- automerge is NOT set to true for major update rules ✓
- CI passes (PR Validation: success) ✓
This org-level config adds major-version update rules for npm and GitHub Actions managers with automerge disabled. The plugin repos will inherit these rules once this PR is merged and they extend from this preset.
cc @cpfarhood
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
matchUpdateTypes: [\"major\"]package rules to the org-level Renovate config for bothgithub-actionsandnpmmanagers.actions/setup-nodeneeded upgrading from v4 → v6. This happened because our Renovate config only handledminorandpatchupdates — major bumps were invisible to automation.packageRulesentries added torenovate-config.json:github-actionsmajor updates → grouped as "github-actions major updates",automerge: falsenpmmajor updates → grouped as "npm major updates",automerge: falseautomergeremainsfalsefor major updates — they still require dual approval (QA + CTO) before merge.Test plan
cc @cpfarhood