Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 8f7e265

Browse files
authored
Fix Netlify builds
1 parent b6bc294 commit 8f7e265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/netlify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
head_ref='${{github.event.workflow_run.head_sha}}'
2323
echo "Head ref: $head_ref"
2424
pulls_uri="https://api.github.com/repos/${{ github.repository }}/pulls?head=$(jq -Rr '@uri' <<<$head_branch)"
25-
pr_number = $(curl -s -H 'Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' "$pulls_uri" | jq -r '.[] | .number)
25+
pr_number = $(curl -s -H 'Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' "$pulls_uri" | jq -r .[] | .number)
2626
echo "PR number: $pr_number"
2727
echo "::set-output name=prnumber::$pr_number"
2828
echo "::set-output name=headref::$head_ref"

0 commit comments

Comments
 (0)