Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 10, 2024
1 parent 3e270a9 commit 8a07766
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
pip install isort ruff black
isort . */*/*.py
black . */*/*.py
ruff format
ruff check --fix . */*/*.py
- name: Check for modified files
Expand All @@ -41,5 +41,5 @@ jobs:
git config --local user.name "github-actions[bot]"
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
git fetch origin
git commit -am "LOOK ON MY REFORMAT, YE MIGHTY, AND DESPAIR!"
git push origin ${{github.event.pull_request.head.ref }}
git commit -am "LOOK ON MY REFORMAT, YE MIGHTY, AND DESPAIR!" || true
git push origin ${{github.event.pull_request.head.ref }} || true

0 comments on commit 8a07766

Please sign in to comment.