From 5136f1b78d9290395d3b58631ff0a2d52db88a67 Mon Sep 17 00:00:00 2001 From: Kaveen Kumarasinghe Date: Sat, 17 Dec 2022 21:56:05 -0500 Subject: [PATCH] Create autoblack_push.yml --- .github/workflows/autoblack_push.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/autoblack_push.yml diff --git a/.github/workflows/autoblack_push.yml b/.github/workflows/autoblack_push.yml new file mode 100644 index 0000000..3aa0393 --- /dev/null +++ b/.github/workflows/autoblack_push.yml @@ -0,0 +1,26 @@ +# GitHub Action that uses Black to reformat Python code (if needed) when doing a git push. +# If all Python code in the repo is complient with Black then this Action does nothing. +# Otherwise, Black is run and its changes are committed to the repo. +# https://github.com/cclauss/autoblack + +name: autoblack_push +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: # https://github.com/stefanzweifel/git-auto-commit-action#checkout-the-correct-branch + ref: ${{ github.head_ref }} + - uses: actions/setup-python@v1 + - run: pip install black + - run: black --check . + - name: If needed, commit black changes to a new pull request + if: failure() + run: | + black . + git config --global user.name github-actions + git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' + # git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY + git commit -am "fixup! Format Python code with psf/black push" + git push # --force origin HEAD:$GITHUB_REF