Skip to content

Commit 26264bd

Browse files
authored
test: remove erroneous quotes from deploy-pr.yaml (#8732)
1 parent 2c7d8ee commit 26264bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pr-deploy.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
- name: Get PR number, title, and branch name
3838
id: pr_info
3939
run: |
40-
set -exo pipefail
40+
set -euxo pipefail
4141
if [[ ${{ github.event_name }} == "workflow_dispatch" ]]; then
42-
PR_NUMBER=${{ github.event.inputs.pr_number }}"
42+
PR_NUMBER=${{ github.event.inputs.pr_number }}
4343
else
44-
PR_NUMBER=${{ github.event.issue.number }}"
44+
PR_NUMBER=${{ github.event.issue.number }}
4545
fi
4646
PR_TITLE=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coder/coder/pulls/$PR_NUMBER | jq -r '.title')
4747
PR_BRANCH=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coder/coder/pulls/$PR_NUMBER | jq -r '.head.ref')

0 commit comments

Comments
 (0)