fix(renovate): explicitly enable minor and patch updates#663
fix(renovate): explicitly enable minor and patch updates#663willporter-workos wants to merge 1 commit into
Conversation
The shared preset now disables minor updates by default. Add enabled: true to the minor/patch rule so this repo continues to receive minor PRs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Greptile SummaryThis PR fixes a Renovate configuration regression caused by the shared
Confidence Score: 4/5Safe to merge; the one-line addition correctly re-enables minor/patch update PRs. The fix itself is correct and well-reasoned. A minor open question remains about whether the major update rule also needs enabled: true to keep generating major-version PRs, since the same shared preset reportedly disables those too. renovate.json — specifically the major update rule, to confirm whether suppressing major-version PRs is intentional. Important Files Changed
|
Summary
The shared
workos/renovate-configpreset now explicitly disablesmajorandminorupdates for non-github-actions managers to enforce a patch-only policy on the monorepo.Renovate applies
packageRulesin order — preset rules first, then repo rules on top. Because the shared preset setsenabled: falsefor minor updates, and this repo's rule setsautomerge: truebut notenabled: true, minor updates would silently stop getting PRs.Fix
Add
"enabled": trueto the existing minor/patch rule so it explicitly re-enables minor updates after the shared preset disables them.🤖 Generated with Claude Code