Skip to content

Commit 3aaa1e5

Browse files
dconlanclaude
andauthored
fix: add conventional-commit prefix to dependabot PR titles (#11)
Dependabot's default PR 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 #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: chore` to both ecosystems in `.github/dependabot.yml`, so future titles come out as `chore(deps): bump X from Y to Z` — passes the lint, and gives `release-please` the right commit type (a dependency bump is a `chore`, not a `fix` or `feat`). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
1 parent db4ef7f commit 3aaa1e5

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
commit-message:
8+
prefix: "chore"
79

810
- package-ecosystem: "github-actions"
911
directory: "/"
1012
schedule:
1113
interval: "weekly"
14+
commit-message:
15+
prefix: "chore"

0 commit comments

Comments
 (0)