fix(renovate): explicitly enable minor and patch updates#556
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 simplifies
Confidence Score: 4/5Safe to merge if the :public preset is known to cover schedule, automerge, and rebase policies — otherwise Renovate's effective behavior may change silently. The change removes all locally-defined Renovate settings and relies entirely on the external workos/renovate-config:public preset. If that preset includes the schedule, automerge rules, and rebaseWhen: conflicted, this is a clean simplification. Without confirming the preset's contents, behavior preservation cannot be verified. renovate.json — the externally-referenced :public preset should be confirmed to cover all previously local settings. 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