fix(dependabot): add build(deps) commit prefix for NuGet#86
Merged
Conversation
The NuGet ecosystem block was missing commit-message config, so Dependabot generated PRs with default titles like "Bump xunit.runner.visualstudio" — those fail the PR-title-lint workflow because they are not Conventional Commits. The github-actions ecosystem already produces "build(deps): ..." titles by default; only NuGet needed the explicit prefix.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #86 +/- ##
=======================================
Coverage 99.56% 99.56%
=======================================
Files 25 25
Lines 1157 1157
Branches 128 128
=======================================
Hits 1152 1152
Misses 1 1
Partials 4 4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Summary
The NuGet ecosystem block in
.github/dependabot.ymlwas missing acommit-messageconfig, so Dependabot generated NuGet PRs with default titles likeBump xunit.runner.visualstudio from X to Y— these fail the PR-title-lint workflow because they're not Conventional Commits. Recent examples: PR #76, #72, #71.The
github-actionsecosystem already producesbuild(deps): ...titles by default; only NuGet needed the explicit prefix.Code changes
.github/dependabot.yml— addcommit-message: { prefix: "build", include: "scope" }to the NuGet ecosystem block.