ci: add autopep8

Signed-off-by: 0xMRTT <0xMRTT@tuta.io>
This commit is contained in:
0xMRTT 2022-08-17 23:30:24 +02:00 committed by GitHub
parent d1de9d9213
commit 36212a8ca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
.github/workflows/autopep8.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: autopep8
on: pull_request
jobs:
autopep8:
# Check if the PR is not from a fork
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ACCESS_TOKEN }}
ref: ${{ github.head_ref }}
- name: autopep8
id: autopep8
uses: peter-evans/autopep8@v1
with:
args: --exit-code --recursive --in-place --aggressive --aggressive .
- name: Commit autopep8 changes
if: steps.autopep8.outputs.exit-code == 2
run: |
git config --global user.name 'AdwCustomizer'
git config --global user.email 'AdwCustomizerTeam@proton.me'
git commit -am "lint: automated autopep8 fixes"
git push