From 4f644acbca04d058a181f9e85b678534eba6fbb8 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 6 Aug 2025 12:54:06 +0100 Subject: [PATCH] ci: Use cat directly when printing PR comments Wrapping in echo was stripping newlines. --- .github/workflows/ci-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-comment.yml b/.github/workflows/ci-comment.yml index ae7b48d07..b6de96e5c 100644 --- a/.github/workflows/ci-comment.yml +++ b/.github/workflows/ci-comment.yml @@ -76,7 +76,7 @@ jobs: echo "## CI Summary" for file in $files; do - echo $(cat $file) + cat $file done echo