Refactor Dependabot configuration groups#104
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates repository maintenance configuration by refining how Dependabot groups dependency updates, and by strengthening the PR checklist to include an automated formatting verification step.
Changes:
- Split the prior generic Dependabot update group into ecosystem-specific groups (
nuget,docs,github-actions) while keeping the same match-all behavior. - Added a
dotnet format --verify-no-changeschecklist item to the pull request template to encourage formatting verification before merge.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/dependabot.yml | Replaces the single generic group name with ecosystem-specific group names for clearer Dependabot PR grouping. |
| .github/pull_request_template.md | Adds a formatting verification command to the standard PR validation checklist. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
This pull request makes minor improvements to repository configuration files. The main changes involve refining dependency update groups in the Dependabot configuration and adding a formatting verification step to the pull request template.
Configuration updates:
dependenciesgroup in.github/dependabot.ymlinto more specific groups:nuget,docs, andgithub-actions, each matching all patterns. [1] [2] [3]Pull request process improvement:
dotnet formatverification step to.github/pull_request_template.mdto ensure code formatting is checked before merging.