From 4ac27dab4db1697ffc6585f12d11a9800067dec9 Mon Sep 17 00:00:00 2001 From: Beppe Catanese <1771700+gcatanese@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:57:42 +0100 Subject: [PATCH] Address PR comments --- .github/workflows/format.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 472d6d044..141d5b24c 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -7,7 +7,7 @@ on: jobs: format: - if: ${{ github.event.commits!= null && github.event.commits.length > 0 &&!startsWith(github.event.head_commit.message, 'style(fmt)') }} + if: ${{ github.event.commits != null && github.event.commits.length > 0 && !startsWith(github.event.head_commit.message, 'style(fmt)') }} permissions: contents: write runs-on: ubuntu-latest @@ -22,6 +22,6 @@ jobs: - run: | git config user.name AdyenAutomationBot git config user.email "${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }}" - git add. + git add . git commit -m "style(fmt): code formatted" git push