We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c78e6 commit 7276357Copy full SHA for 7276357
.github/workflows/pull-request-build.yml
@@ -39,11 +39,14 @@ jobs:
39
- name: Build
40
env:
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
+ REPO: ${{ github.repository }}
43
HEAD_REF: ${{ github.event.pull_request.head.ref }}
44
+ PR_NUMBER: ${{ github.event.pull_request.number }}
45
+ RUN_ID: ${{ github.run_id }}
46
run: |
47
./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION \
- --repo "${{ github.repository }}" \
48
+ --repo "$REPO" \
49
--branch "$HEAD_REF" \
- --pr-number "${{ github.event.pull_request.number }}" \
- --run-id "${{ github.run_id }}"
- timeout-minutes: 180
50
+ --pr-number "$PR_NUMBER" \
51
+ --run-id "$RUN_ID"
52
+ timeout-minutes: 180
0 commit comments