ci(blocked_prs): fix multiline comment body in comment action

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers 2025-03-12 20:18:17 -07:00
parent 05356eff69
commit c2b7b4c82a
No known key found for this signature in database
GPG Key ID: E10E321EB160949B

View File

@ -36,7 +36,9 @@ runs:
echo "Reading comment file from ${COMMENT_FILE}"
comment_body="${comment_body}$(cat "$COMMENT_FILE")"
fi
echo "COMMENT_BODY=$comment_body" >> "$GITHUB_ENV"
echo 'COMMENT_BODY<<EOF' >> "$GITHUB_ENV"
echo "$comment_body" >> "$GITHUB_ENV"
echo 'EOF' >> "$GITHUB_ENV"
- name: Get Existing Comment Id
shell: bash