fix(renovate): explicitly enable minor and patch updates#493
fix(renovate): explicitly enable minor and patch updates#493willporter-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 adds
Confidence Score: 5/5A one-line config addition to a Renovate file with no effect on application code — straightforward to merge. The change is a single enabled: true field added to an existing packageRule. It restores the intended automerge behavior for minor and patch updates that was silently broken by the shared preset update, and does not interact with application logic, tests, or security boundaries. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "fix(renovate): explicitly enable minor a..." | Re-trigger Greptile |
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