mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-30 12:45:14 +00:00
Create autoblack.yml
This commit is contained in:
parent
260dc2085b
commit
ec7f825107
1 changed files with 30 additions and 0 deletions
30
.github/workflows/autoblack.yml
vendored
Normal file
30
.github/workflows/autoblack.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
# GitHub Action that uses Black to reformat the Python code in an incoming pull request.
|
||||
# If all Python code in the pull request is compliant with Black then this Action does nothing.
|
||||
# Othewrwise, Black is run and its changes are committed back to the incoming pull request.
|
||||
# https://github.com/cclauss/autoblack
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue