updated version for release #293
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format python code | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
autopep8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: autopep8 | |
uses: peter-evans/autopep8@v1 | |
with: | |
args: --recursive --in-place --aggressive --aggressive . --max-line-length=120 | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: autopep8 action fixes | |
committer: Stephan Vedder <stephan.vedder@gmail.com> | |
title: Fixes by autopep8 action | |
body: This is an auto-generated PR with fixes by autopep8. | |
labels: autopep8, automated pr | |
reviewers: Tarcontar | |
branch: autopep8-patches |