fix(renovate): explicitly enable minor and patch updates#663
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 silent suppression of minor dependency updates caused by the shared
Confidence Score: 4/5Safe to merge for the stated goal; the broader removal of local settings warrants a quick check that the public preset covers schedule and automerge intent. The change correctly addresses the minor-update suppression problem but goes further than described — removing the scheduling constraint and all automerge grouping rules. If the public preset's defaults differ from what was previously explicit (e.g., no schedule limit or dependencyDashboard enabled), Renovate's behavior will change in ways not covered by the PR description. renovate.json — confirm the 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