Skip to content

Commit

Permalink
fixup! chore(ci): lint for bang commits (fixup, squash, drop, edit)
Browse files Browse the repository at this point in the history
  • Loading branch information
Restioson committed Oct 28, 2024
1 parent 3dd373d commit 44b6971
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,5 @@ jobs:
# - We use a -z here, which makes \0 be the line separator, because if feeding multiline text into grep, it will
# exit with a status of 0 regardless of whether there is a match (
- name: Disallow bang commits
run: bash -c "git log --pretty=format:%s origin/main..HEAD | [ 0 != grep 'fixup!|squash!|drop!|edit!' ]"
run: git log --pretty=format:%s origin/main..HEAD | bash -c ' ! grep "fixup\!|squash\!|drop\!|edit\!"'

0 comments on commit 44b6971

Please sign in to comment.