Skip to content
This repository was archived by the owner on Sep 8, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci-auto-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ on:
- synchronize

concurrency:
group: auto-fix-${{ github.event.pull_request.number }}
group: auto-fix-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: false

jobs:
auto-fix-issues:
name: Auto-Fix Linting & Formatting Issues
runs-on: ubuntu-latest
# Only run on PRs from the same repository (not forks)
if: github.event.pull_request.head.repo.full_name == github.repository
# Only run on PRs from the same repository (not forks). Also guards
# against non-pull_request events (e.g. push) reaching this job, since
# github.event.pull_request is null outside PR context.
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
permissions:
contents: write
pull-requests: write
Expand Down
Loading