Fix Netlify builds

pull/28217/head
Michael Telatynski 2022-04-27 11:20:29 +01:00 committed by GitHub
parent b6bc2943d3
commit 8f7e265125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ jobs:
head_ref='${{github.event.workflow_run.head_sha}}'
echo "Head ref: $head_ref"
pulls_uri="https://api.github.com/repos/${{ github.repository }}/pulls?head=$(jq -Rr '@uri' <<<$head_branch)"
pr_number = $(curl -s -H 'Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' "$pulls_uri" | jq -r '.[] | .number)
pr_number = $(curl -s -H 'Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' "$pulls_uri" | jq -r .[] | .number)
echo "PR number: $pr_number"
echo "::set-output name=prnumber::$pr_number"
echo "::set-output name=headref::$head_ref"