Skip to content

Commit a5a3888

Browse files
authored
chore: fix dependabot pr titles (#262)
The Semantic PR action requires the PR title prefix to be `chore:`, `fix:`, `feat:` or `docs:` but the dependabot config has it opening PRs with `dev:` as the title so update the config to have it open PRs with titles that pass the Semantic PR action.
1 parent acd5f57 commit a5a3888

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ updates:
77
time: "10:00"
88
open-pull-requests-limit: 10
99
commit-message:
10-
prefix: "chore: "
11-
prefix-development: "dev: "
10+
prefix: "fix: "
11+
prefix-development: "chore: "

0 commit comments

Comments
 (0)