Skip to content

Commit

Permalink
Negation fix (#276)
Browse files Browse the repository at this point in the history
* Negation fix

* commit as AdyenAutomationBot
  • Loading branch information
michaelpaul authored Dec 5, 2023
1 parent c0f2c7b commit 2526bde
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,21 @@ on:

jobs:
format:
if: ! startsWith(github.event.head_commit.message, 'style(fmt)')
if: ${{ ! startsWith(github.event.head_commit.message, 'style(fmt)') }}
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}
- uses: actions/setup-go@v4
with:
go-version: 1.18
- run: make fmt
- run: |
git config user.name github-actions
git config user.email [email protected]
git config user.name AdyenAutomationBot
git config user.email "${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }}"
git add .
git commit -m "style(fmt): code formatted"
git push
git push

0 comments on commit 2526bde

Please sign in to comment.