fix: add conventional-commit prefix to dependabot PR titles - #11
Merged
Conversation
Dependabot's default titles ("Bump X from Y to Z") aren't Conventional
Commits format, so every dependabot PR failed pr-title-lint the moment
it went live on main - confirmed on PRs #7-10, all of which failed the
title check despite being safe, mergeable dependency bumps. Adding
commit-message.prefix makes titles "chore(deps): bump X from Y to Z",
which both passes the lint and gives release-please the right commit
type (chore - a CI/tooling dependency bump, not a fix or feature).
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This was referenced Sep 3, 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.
Dependabot's default PR titles ("Bump X from Y to Z") aren't Conventional Commits format, so every dependabot PR failed
pr-title-lintthe moment it went live onmain— confirmed on #7, #8, #9, and #10, all of which failed the title check despite being safe, mergeable dependency bumps (all four retitled manually and re-verified green in the meantime).Adds
commit-message.prefix: choreto both ecosystems in.github/dependabot.yml, so future titles come out aschore(deps): bump X from Y to Z— passes the lint, and givesrelease-pleasethe right commit type (a dependency bump is achore, not afixorfeat).Co-Authored-By: Claude Sonnet 5 noreply@anthropic.com