From dd34a3a43321343e594a9a247b707e85947cad77 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 2 Jul 2021 17:40:49 +1000 Subject: [PATCH] Try simpler approach [ci skip] --- .github/workflows/autoblack.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/autoblack.yml b/.github/workflows/autoblack.yml index 0a36579fd..17c42398b 100644 --- a/.github/workflows/autoblack.yml +++ b/.github/workflows/autoblack.yml @@ -18,24 +18,19 @@ jobs: - run: pip install black - name: Auto-format code if needed run: black spacy + # We can't run black --check here because that returns a non-zero excit + # code and makes GitHub think the action failed - name: Check for modified files id: git-check run: echo ::set-output name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) - - name: Commit modified files - if: steps.git-check.outputs.modified == 'true' - run: | - git config --global user.name 'explosion-bot' - git config --global user.email 'explosion-bot@users.noreply.github.com' - git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY - git status - git add -A - git commit -am "Auto-format code with black" - name: Create Pull Request if: steps.git-check.outputs.modified == 'true' uses: peter-evans/create-pull-request@v3 with: title: Auto-format code with black labels: meta + commit-message: Auto-format code with black + committer: GitHub author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> body: _This PR is auto-generated._ branch: autoblack