Skip to content

Merge pull request #422 from NCAR/419-replace-chapman-initial-conditi… #46

Merge pull request #422 from NCAR/419-replace-chapman-initial-conditi…

Merge pull request #422 from NCAR/419-replace-chapman-initial-conditi… #46

Workflow file for this run

name: Auto format python code with PEP8
on:
push:
branches:
- main
jobs:
autopep8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install autopep8
run: pip install autopep8
- name: Run autopep8
run: autopep8 --recursive --in-place --aggressive .
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: autopep8 action fixes
title: Fixes by autopep8 action
body: This is an auto-generated PR with fixes by autopep8.
branch: autopep8-patches