Skip to content

Commit

Permalink
try to commit too
Browse files Browse the repository at this point in the history
  • Loading branch information
Hezko committed Nov 18, 2024
1 parent 23f590f commit e72a150
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,14 @@ jobs:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "-v"
options: "-v"
- name: checkout
run: |
# Check if black made any changes
git diff --exit-code || (
git config user.name "github-actions[bot]" &&
git config user.email "github-actions[bot]@users.noreply.github.com" &&
git add . &&
git commit -m "Format code with black" &&
git push
)

0 comments on commit e72a150

Please sign in to comment.