Skip to content

Commit b45d382

Browse files
authored
fix(ci): quote prBody GH expr on_opened_pr
1 parent 17937d8 commit b45d382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/on_opened_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
github-token: ${{ secrets.GITHUB_TOKEN }}
3131
# Maintenance: convert into a standalone JS like post_release.js
3232
script: |
33-
const prBody = ${{ needs.get_pr_details.outputs.prBody }};
33+
const prBody = "${{ needs.get_pr_details.outputs.prBody }}";
3434
const prNumber = ${{ needs.get_pr_details.outputs.prNumber }};
3535
const blockLabel = process.env.BLOCK_LABEL;
3636
const blockReasonLabel = process.env.BLOCK_REASON_LABEL;

0 commit comments

Comments
 (0)