Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Standardizes this repo on the same two-lane split we're rolling out across k0swe.
Renovate owns routine version updates. Its presets (
group:monorepos,group:recommended) already group version-locked families — the Angular monorepo, Expo SDK, React Native — with no per-repo patterns to hand-maintain. The Mend-hosted app is free for public and private repositories.Dependabot owns security updates. That is already all it does here: a repo with no
dependabot.ymlfiles security updates only, raised from Dependabot alerts.This config makes that explicit and fixes a real failure mode:
open-pull-requests-limit: 0disables version updates. Per GitHub's docs this has no effect on security updates, so nothing is lost — and it prevents Dependabot racing Renovate with duplicate PRs.applies-to: security-updates. That key is required:groupsdefaults toversion-updates, so without it the grouping silently does nothing for security PRs.Why grouping matters
A security wave touching co-dependent packages is unmergeable when split across PRs. Bumping
@angular/commonalone failsnpm ciwith ERESOLVE, because@angular/corestays pinned through the CDK/Material peer chain — no amount of rebasing fixes it, since the PR is incompatible by construction. One group means one PR and one coherent lockfile.Directories were derived from the actual manifests in the tree, so every
package.json/go.mod/requirements.txtin the repo is covered.