Skip to content

Commit

Permalink
fix(general): test message
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelpuiggarcia committed Sep 12, 2023
1 parent 8a53e04 commit e0fea86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/commit-message-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Check Commit Messages
run: |
commits=$(git log --format=%s origin/${{ github.base_ref }}..origin/${{ github.head_ref }})
commits=$(git log --format=%s ${{ github.event.before }}..${{ github.event.after }})
for commit in $commits
do
if ! [[ "$commit" =~ ^(feat|fix|chore|docs|style|refactor|perf|test)(\(.*\))?:?.{2,} ]]; then
Expand Down

0 comments on commit e0fea86

Please sign in to comment.