Skip to content

Commit

Permalink
Fix typo in workflow file
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Wolf <github@christianwolf.email>
  • Loading branch information
christianlupus committed May 16, 2023
1 parent 7097b16 commit a46d985
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pull-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,14 @@ jobs:
git clone --filter=tree:0 "$REPO" .
- name: Manual checkout of the app (PR head)
env:
URL: ${{ github.event.pull_request.head.repo.html_url }}
HEAD_REF: ${{ github.head_ref }}
run: |
git remote add head "${{ github.event.pull_request.head.repo.html_url }}"
git remote add head "$URL"
git fetch head --filter=tree:0
git checkout -b head-branch head/${{ github.head_ref }}
git checkout -b head-branch head/$HEAD_REF
- name: Status of current git workspace
run: |
git branch
Expand Down

0 comments on commit a46d985

Please sign in to comment.