Skip to content

Commit

Permalink
Negation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpaul committed Nov 28, 2023
1 parent fa0c336 commit 99fad57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
format:
if: ! startsWith(github.event.head_commit.message, 'style(fmt)')
if: ${{ ! startsWith(github.event.head_commit.message, 'style(fmt)') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
Expand All @@ -20,4 +20,4 @@ jobs:
git config user.email [email protected]
git add .
git commit -m "style(fmt): code formatted"
git push
git push

0 comments on commit 99fad57

Please sign in to comment.