chore(deps): group major nuget updates with minor and patch - #50
Merged
Conversation
The `nuget-minor-and-patch` group only matched minor and patch update types, so major bumps fell outside grouping and Dependabot opened one PR per dependency (#47, #48, #49). Add "major" to the group's update-types and rename it to `nuget`, so all version updates for the nuget ecosystem land in a single weekly PR. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
There was a problem hiding this comment.
🟢 Approval recommended
The change is a small, valid Dependabot YAML adjustment that aligns with the stated goal and preserves the separate security-updates grouping.
Pull request overview
This PR updates the Dependabot configuration so NuGet dependency updates are grouped into a single weekly PR even when updates include major version bumps, preventing Dependabot from opening one PR per dependency for majors.
Changes:
- Expanded the NuGet version-updates group to include
"major"update types. - Renamed the NuGet group from
nuget-minor-and-patchtonugetto reflect its broader scope.
File summaries
| File | Description |
|---|---|
| .github/dependabot.yml | Renames the NuGet grouped-updates bucket and adds major to update-types so all NuGet version updates are grouped together. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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
Dependabot was opening one PR per dependency for major bumps (#47, #48, #49) instead of grouping them.
The
nuget-minor-and-patchgroup only matchedminorandpatchupdate types. Anything outside a group'supdate-types/patternsis ungrouped, so Dependabot falls back to a PR per dependency — which is exactly what happened for the three major bumps.What
"major"to the group'supdate-typesnuget-minor-and-patch→nuget, since it now covers every version updateAll nuget version updates now land in a single weekly PR. Security updates are unaffected (
nuget-securitystill handles those separately).Note: renaming the group changes the generated branch name, so the existing grouped PR #46 will be superseded on the next Dependabot run.
🤖 Generated with Claude Code