chore: group dependabot dependency updates - #681
Merged
eval-exec merged 1 commit intoAug 5, 2026
Conversation
Bundle cargo dependency updates into grouped PRs instead of one PR per package: - ckb-stack: all ckb-* crates. These are released in lockstep and share schemars/JsonSchema wiring, so they must move together; a PR bumping a single ckb-* crate does not compile on its own. - rust-dependencies: all remaining crates, in one PR. Replaces ~10 individual weekly PRs with two grouped ones.
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Dependabot configuration to reduce PR noise by grouping Cargo dependency updates into coherent bundled PRs, with a dedicated group for ckb-* crates that must be upgraded together.
Changes:
- Add a
groupsblock to the existing Cargoupdatesentry. - Introduce
ckb-stackgroup forckb-*crates. - Introduce
rust-dependenciesgroup for all other crates (withckb-*excluded).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Collaborator
Author
chenyukang
approved these changes
Aug 4, 2026
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.
What
Add a
groupsblock to.github/dependabot.ymlso Dependabot bundles updates into grouped PRs instead of one PR per package. Currently this repo gets ~10 separate weekly PRs (e.g. #670–#678).Groups
ckb-stack— allckb-*crates, in one PR.rust-dependencies— all remaining crates, in one PR.Why split out
ckb-*The
ckb-*crates are released in lockstep and shareschemars/JsonSchemawiring, so they must move together — a PR that bumps a singleckb-*crate (e.g. #676ckb-error, #678ckb-script) does not compile in isolation. Grouping them makes their PR coherent and reviewable as a unit, and keeps a breaking change in an unrelated crate from blocking needed stack bumps.Notes
directory: "/"is unchanged, so thetest/crate is still not covered (separate concern).