Skip to content

Commit

Permalink
Add missing GITHUB_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Feb 5, 2025
1 parent 307462e commit ce05906
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/testBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
echo "READY_TO_BUILD=false" >> "$GITHUB_OUTPUT"
exit 1
fi
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Check if pull request number is correct
if: ${{ github.event_name == 'workflow_dispatch' }}
Expand All @@ -50,7 +52,7 @@ jobs:
set -e
echo "REF=$(gh pr view ${{ github.event.inputs.PULL_REQUEST_NUMBER }} --json headRefOid --jq '.headRefOid')" >> "$GITHUB_OUTPUT"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}

postGitHubCommentBuildStarted:
runs-on: ubuntu-latest
Expand Down

0 comments on commit ce05906

Please sign in to comment.