From f6fea6826814b57b91398fe82905601b69cc4ab5 Mon Sep 17 00:00:00 2001 From: Jon Harrell <4829245+jharrell@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:27:29 -0500 Subject: [PATCH] use eof in github output --- .github/workflows/check-all-links.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-all-links.yml b/.github/workflows/check-all-links.yml index 5c924ae06c..8a3baf9bfa 100644 --- a/.github/workflows/check-all-links.yml +++ b/.github/workflows/check-all-links.yml @@ -27,7 +27,11 @@ jobs: OUTPUT="No absolute URLs to prisma.io/docs found." SUCCESS=true fi - echo "body=${OUTPUT}" >> "$GITHUB_OUTPUT" + # https://github.com/orgs/community/discussions/26288#discussioncomment-3876281 + echo "body<> "${GITHUB_OUTPUT}" + echo "${OUTPUT}" >> "${GITHUB_OUTPUT}" + echo "EOF" >> "${GITHUB_OUTPUT}" + echo "success=${SUCCESS}" >> "$GITHUB_OUTPUT" - uses: ./.github/actions/create-or-update-comment