Skip to content

Commit 489bb74

Browse files
Fix typo in workflow file
Signed-off-by: Christian Wolf <github@christianwolf.email>
1 parent 04110d3 commit 489bb74

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pull-checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,14 @@ jobs:
6060
6161
git clone --filter=tree:0 "$REPO" .
6262
- 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 }}
6366
run: |
64-
git remote add head "${{ github.event.pull_request.head.repo.html_url }}"
67+
git remote add head "$URL"
6568
git fetch head --filter=tree:0
6669
67-
git checkout -b head-branch head/${{ github.head_ref }}
70+
git checkout -b head-branch head/$HEAD_REF
6871
- name: Status of current git workspace
6972
run: |
7073
git branch

0 commit comments

Comments
 (0)