Skip to content

Commit

Permalink
commit as AdyenAutomationBot
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpaul committed Nov 29, 2023
1 parent 99fad57 commit e755200
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@ on:
jobs:
format:
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

0 comments on commit e755200

Please sign in to comment.