Skip to content

Commit

Permalink
chore: Setup autoblack
Browse files Browse the repository at this point in the history
Signed-off-by: Hari-Nagarajan <[email protected]>
  • Loading branch information
Hari-Nagarajan committed Sep 22, 2020
1 parent ee6de84 commit 7588b03
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,25 @@
uses: RojerGS/python-black-check@master
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 '[email protected]'
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

0 comments on commit 7588b03

Please sign in to comment.