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 04110d3 commit 489bb74Copy full SHA for 489bb74
.github/workflows/pull-checks.yml
@@ -60,11 +60,14 @@ jobs:
60
61
git clone --filter=tree:0 "$REPO" .
62
- name: Manual checkout of the app (PR head)
63
+ env:
64
+ URL: ${{ github.event.pull_request.head.repo.html_url }}
65
+ HEAD_REF: ${{ github.head_ref }}
66
run: |
- git remote add head "${{ github.event.pull_request.head.repo.html_url }}"
67
+ git remote add head "$URL"
68
git fetch head --filter=tree:0
69
- git checkout -b head-branch head/${{ github.head_ref }}
70
+ git checkout -b head-branch head/$HEAD_REF
71
- name: Status of current git workspace
72
73
git branch
0 commit comments