File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,18 @@ jobs:
2727 PR_BODY : ${{ github.event.pull_request.body }}
2828 PRNUM : ${{ github.event.pull_request.number }}
2929 TITLE : ${{ github.event.pull_request.title }}
30- GH_TOKEN : ${{ github.token }}
3130 GH_PR_VALIDATOR_TOKEN : ${{ secrets.GH_PR_VALIDATOR_TOKEN }}
3231 BASE_REPO : ${{ github.event.pull_request.base.repo.full_name }}
3332 HEAD_REPO : ${{ github.event.pull_request.head.repo.full_name }}
3433 run : |
3534 echo "base or target repo : ${{ github.event.pull_request.base.repo.full_name }}"
3635 echo "head or source repo : ${{ github.event.pull_request.head.repo.full_name }}"
37-
36+ echo "$GH_PR_VALIDATOR_TOKEN" | gh auth login --with-token
37+
3838 if [[ ${{ github.event.pull_request.head.repo.full_name }} == ${{ github.event.pull_request.base.repo.full_name }} ]]; then
3939 export forked=false
4040 else
4141 export forked=true
42- echo "$GH_PR_VALIDATOR_TOKEN" | gh auth login --with-token
4342 fi
4443
4544 set -x
You can’t perform that action at this time.
0 commit comments