Skip to content

Commit

Permalink
Commit results
Browse files Browse the repository at this point in the history
  • Loading branch information
WorldEnd-Admin committed Sep 8, 2024
1 parent b174152 commit 0fd5924
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,24 @@ on:
- '.github/workflows/black.yml'
- 'requirements.txt'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
name: Checkout
uses: actions/checkout@v4
name: Run Black
uses: psf/black@stable
with:
options: "--verbose"
src: "./Scripts"
name: Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply formatting changes
skip_fetch: true
skip_checkout: true

0 comments on commit 0fd5924

Please sign in to comment.