diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/format.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index f2c783d65..f353d4c8f 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -19,7 +19,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} - ref: ${{ github.event.pull_request.head.sha || github.sha }} + ref: ${{ github.event.pull_request.head.ref || github.ref_name }} - name: Setup Bun uses: ./.github/actions/setup-bun @@ -29,3 +29,4 @@ jobs: ./script/format.ts env: CI: true + PUSH_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }} |
