We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 741aad5 commit 14628a6Copy full SHA for 14628a6
1 file changed
.github/workflows/pr-title.yml
@@ -16,7 +16,7 @@ jobs:
16
run: |
17
echo "Checking PR title: $PR_TITLE"
18
19
- if [[ "$PR_TITLE" =~ ^(feat|fix|chore|docs|test|refactor)(\([^)]+\))?:\ .+ ]]; then
+ if printf '%s\n' "$PR_TITLE" | grep -Eq '^(feat|fix|chore|docs|test|refactor)(\([^)]+\))?: .+'; then
20
exit 0
21
fi
22
0 commit comments