From 3f51c64a423f857f992fffae7e90896703c87596 Mon Sep 17 00:00:00 2001 From: Mic Neale Date: Wed, 27 Mar 2024 18:20:16 +1100 Subject: [PATCH] new autofmt message --- .github/workflows/autofmt.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autofmt.yml b/.github/workflows/autofmt.yml index 6c928e0c9e..4bcdc10cb8 100644 --- a/.github/workflows/autofmt.yml +++ b/.github/workflows/autofmt.yml @@ -7,7 +7,7 @@ concurrency: jobs: format: # Check if the PR is not from a fork - if: ${{ !contains(github.event.head_commit.message, 'chore(autofmt):') }} + if: ${{ !contains(github.event.head_commit.message, 'Automated formatting') }} #if: github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest steps: @@ -31,5 +31,5 @@ jobs: git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" git remote set-url origin https://x-access-token:${{ secrets.FTL_AUTOFMT_TOKEN }}@github.com/${{ github.repository }} - git commit -am "chore(autofmt): Automated formatting" + git commit -am "Automated formatting" git push