From 7588b03354e3d2727ff70d217ffbe1e4cdfe4409 Mon Sep 17 00:00:00 2001 From: Hari-Nagarajan Date: Tue, 22 Sep 2020 15:21:38 -0400 Subject: [PATCH] chore: Setup autoblack Signed-off-by: Hari-Nagarajan --- .github/workflows/main.yaml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6c694094..86ae0a7b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -1 +1,25 @@ -uses: RojerGS/python-black-check@master \ No newline at end of file +name: autoblack +on: [pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: 3.7 + - name: Install Black + run: pip install black + - name: Run black --check . + run: black --check . + - name: If needed, commit black changes to the pull request + if: failure() + run: | + black . + git config --global user.name 'autoblack' + git config --global user.email 'cclauss@users.noreply.github.com' + git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY + git checkout $GITHUB_HEAD_REF + git commit -am "fixup: Format Python code with Black" + git push