Skip to content
Draft
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
11 changes: 11 additions & 0 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,17 @@ jobs:
if: always()
runs-on: ubuntu-latest
steps:
- name: Verify PR_TOKEN
env:
PR_TOKEN: ${{ secrets.PR_TOKEN }}
run: |
echo "PR_TOKEN length=${#PR_TOKEN}"
if [ -z "$PR_TOKEN" ]; then
echo "PR_TOKEN is EMPTY — will fall back to github.token"
else
echo "PR_TOKEN is SET"
fi

- uses: actions/checkout@v4
with:
token: ${{ secrets.PR_TOKEN || github.token }}
Expand Down
Loading