We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab41d7 commit c54904dCopy full SHA for c54904d
.github/workflows/pr.yml
@@ -13,7 +13,7 @@ jobs:
13
uses: actions/github-script@v7
14
with:
15
script: |
16
- const titlePrefixes = ["feat", "fix", "break", "chore"];
+ const titlePrefixes = ["feat", "fix", "breaking", "chore"];
17
const title = context.payload.pull_request.title.toLowerCase();
18
const titleHasValidPrefix = titlePrefixes.some((prefix) => title.startsWith(`${prefix}:`));
19
if (!titleHasValidPrefix) { process.exit(-1); }
0 commit comments