fix(renovate): explicitly enable minor and patch updates#261
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 replaces the repo-local Renovate configuration with a single extend reference to the
Confidence Score: 4/5Safe to merge if the The change removes all local Renovate overrides in favour of a shared preset, which is a reasonable consolidation — but the correctness of automerge, schedule, and renovate.json — all behaviour now delegated to Important Files Changed
|
Updated the Renovate configuration to extend from the public version of the WorkOS Renovate config and removed several settings.
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