ci(dependabot): group cargo and github-actions updates into one PR each - #471
Open
ebourgeois wants to merge 1 commit into
Open
ci(dependabot): group cargo and github-actions updates into one PR each#471ebourgeois wants to merge 1 commit into
ebourgeois wants to merge 1 commit into
Conversation
The main ruleset requires up-to-date branches with linear history, so every merge marks all other open PRs BEHIND and forces a rebase plus a full ~20-minute CI cycle per PR. Five separate github-actions PRs recently cost five serialized CI runs. - cargo: extend the rust-dependencies catch-all group to majors (the kube-ecosystem group stays separate and first, since kube/k8s-openapi/ kube-lease-manager must move as a unit) - github-actions: add a catch-all group covering all update types Dependabot now opens at most one weekly PR per ecosystem (two for cargo: kube-ecosystem + everything else). Note: a major bump inside a group makes the whole grouped PR report as major, so the auto-merge workflow holds it for manual review — the fail-safe behavior is unchanged. Signed-off-by: Erick Bourgeois <erick@jeb.ca>
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.
Why
The
mainruleset requires up-to-date branches with linear history: every merge marks all other open PRs BEHIND, forcing a rebase + full ~20-min CI cycle per PR. Five separate github-actions PRs (#460, #462–#465) recently cost five serialized CI runs, and any unrelated merge reset the whole chain.What changes
rust-dependenciescatch-all group now includes majors. Dependabot opens at most two weekly cargo PRs:kube-ecosystem(unchanged — kube/k8s-openapi/kube-lease-manager are version-coupled and must move as a unit) + everything else.Behavior note
A major bump inside a grouped PR makes the whole PR report
version-update:semver-major, so the dependabot auto-merge workflow holds it for manual review — the fail-safe behavior is unchanged. No effect on already-open PRs beyond dependabot rebasing them into the new grouping on its next run.