Skip to content

Commit

Permalink
build: turn on the extended regex syntax for the grep command
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Jun 24, 2024
1 parent 8751ca9 commit b6b5b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/generate_readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
id: check_prefix
continue-on-error: true
run: |
git log --format=%B -n 1 $GITHUB_SHA | grep -q "^(feat|refactor):"
git log --format=%B -n 1 $GITHUB_SHA | grep -Eq "^(feat|refactor):"
echo "prefix_found=1" >> $GITHUB_OUTPUT
- name: Prepare Node
Expand Down

0 comments on commit b6b5b84

Please sign in to comment.