We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa5cbf commit c058808Copy full SHA for c058808
1 file changed
.github/workflows/Conventional_Commits.yml
@@ -24,7 +24,7 @@ jobs:
24
github-token: ${{ secrets.GITHUB_TOKEN }}
25
script: |
26
const title = context.payload.pull_request.title || '';
27
- const pattern = /^(feat|fix|docs|style|refactor|perf|test|chore|ci|build|revert)(\(.+\))?!?: .+/;
+ const pattern = /^(feat|fix|docs|style|refactor|perf|test|chore|ci|build|revert)(\(.+\))?!?: .+/i;
28
29
if (pattern.test(title)) {
30
console.log(`✓ PR title follows Conventional Commits format: "${title}"`);
0 commit comments