Skip to content

Commit 2c046ef

Browse files
authored
ci: use single quotes when we have backticks in title (#8159)
1 parent f4a712b commit 2c046ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pr-deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
PR_TITLE=$(curl -sSL -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos/coder/coder/pulls/$PR_NUMBER" | jq -r '.title')
4343
else
4444
PR_NUMBER=${{ github.event.issue.number }}
45-
PR_TITLE="${{ github.event.issue.title }}"
45+
PR_TITLE='${{ github.event.issue.title }}'
4646
fi
4747
echo "PR_URL=https://github.com/coder/coder/pull/$PR_NUMBER" >> $GITHUB_OUTPUT
4848
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)