File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1818 uses : actions/checkout@v4
1919 with :
2020 token : ${{ secrets.GITHUB_TOKEN }}
21+ repository : ${{ github.event.pull_request.head.repo.full_name || github.repository }}
22+ ref : ${{ github.event.pull_request.head.sha || github.sha }}
2123
2224 - name : Setup Bun
2325 uses : ./.github/actions/setup-bun
2729 ./script/format.ts
2830 env :
2931 CI : true
30- GITHUB_HEAD_REF : ${{ github.head_ref }}
31- GITHUB_REF_NAME : ${{ github.ref_name }}
Original file line number Diff line number Diff line change @@ -5,10 +5,9 @@ import { $ } from "bun"
55await $ `bun run prettier --ignore-unknown --write .`
66
77if ( process . env [ "CI" ] && ( await $ `git status --porcelain` . text ( ) ) ) {
8- const branch = process . env [ "GITHUB_HEAD_REF" ] || process . env [ "GITHUB_REF_NAME" ]
98 await $ `git config --local user.email "[email protected] "` 109 await $ `git config --local user.name "GitHub Action"`
1110 await $ `git add -A`
1211 await $ `git commit -m "chore: format code"`
13- await $ `git push origin HEAD: ${ branch } --no-verify`
12+ await $ `git push --no-verify`
1413}
You can’t perform that action at this time.
0 commit comments