diff options
| author | 2026-01-16 16:02:45 +0800 | |
|---|---|---|
| committer | 2026-01-16 16:02:45 +0800 | |
| commit | b2f5c7b40a2e372f185b5818901a4234a61527c8 (patch) | |
| tree | f2b09456e71c6c395f32580f5787c376b86cc8df | |
| parent | fc22b38a28da7fc1694847f2bc68fd362952c10c (diff) | |
| download | DropOut-b2f5c7b40a2e372f185b5818901a4234a61527c8.tar.gz DropOut-b2f5c7b40a2e372f185b5818901a4234a61527c8.zip | |
chore: refine prek workflow by removing skip ci comment
Removed the commented line that instructed to skip the CI process based on commit messages, streamlining the workflow configuration for clarity and maintainability.
| -rw-r--r-- | .github/workflows/prek.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/prek.yml b/.github/workflows/prek.yml index f002c8a..b49447d 100644 --- a/.github/workflows/prek.yml +++ b/.github/workflows/prek.yml @@ -11,7 +11,6 @@ permissions: jobs: prek: runs-on: ubuntu-latest - # Skip if commit message contains [skip ci] (to avoid loops with pre-commit.ci) if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout code @@ -42,7 +41,7 @@ jobs: continue-on-error: true with: all_files: true - + - name: Commit fixes if: steps.prek.outcome == 'failure' uses: stefanzweifel/git-auto-commit-action@v5 |