Remove NuGet dependency grouping from Dependabot config#1459
Open
jonathanpeppers wants to merge 1 commit into
Open
Remove NuGet dependency grouping from Dependabot config#1459jonathanpeppers wants to merge 1 commit into
jonathanpeppers wants to merge 1 commit into
Conversation
Removes the uget-dependencies group that bundled all NuGet updates into a single PR (e.g. #1458). Without grouping, Dependabot opens one PR per package, which makes it easier to review, bisect regressions, and revert a single problematic bump without losing the other updates. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Dependabot configuration to stop grouping all NuGet dependency updates into a single PR, restoring Dependabot’s default “one PR per dependency” behavior to make upgrades easier to review and revert independently.
Changes:
- Removed the catch-all NuGet
groupsconfiguration (patterns: ["*"]) from.github/dependabot.yml. - Kept the existing weekly NuGet schedule and
open-pull-requests-limit: 10unchanged.
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 Dependabot config currently groups every NuGet update into a single PR via a catch-all
"*"pattern (see #1458, which bumps 4 unrelated packages at once). Grouping all dependencies makes review harder, hides per-package risk, and forces an all-or-nothing merge: if one bump regresses, the other safe updates get held up too.What changed
Removes the
groups: nuget-dependenciesblock from.github/dependabot.yml. Dependabot will revert to its default behavior of one PR per dependency.open-pull-requests-limit: 10is unchanged, so the queue is still capped.Trade-offs
More PRs per week, but each one is small, individually reviewable, and independently revertable. If routine bumps become noisy later, we can re-introduce a narrower group (for example minor/patch-only, or a specific package family) rather than grouping everything.