Skip to content

Commit c54904d

Browse files
committed
chore: "break" -> "breaking" in PR title prefix workflow
aspublish checks for "breaking", not "break"
1 parent dab41d7 commit c54904d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/github-script@v7
1414
with:
1515
script: |
16-
const titlePrefixes = ["feat", "fix", "break", "chore"];
16+
const titlePrefixes = ["feat", "fix", "breaking", "chore"];
1717
const title = context.payload.pull_request.title.toLowerCase();
1818
const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`));
1919
if (!titleHasValidPrefix) { process.exit(-1); }

0 commit comments

Comments
 (0)