From 404504ab41bc684ab59ae6f8f5d92012674e8a41 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Sat, 18 Mar 2023 11:04:50 +0100 Subject: [PATCH] CI Checks: Fix malformed markdown (#3595) The Benchmark results aren't formatted properly if the ecosystem check finds differences because the ecosystem check doesn't emit a trailing newline. This PR adds the trailing newline to the ecosystem check script. --- .github/workflows/pr-comment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-comment.yaml b/.github/workflows/pr-comment.yaml index 80ecbd9c14..cd2070f2fc 100644 --- a/.github/workflows/pr-comment.yaml +++ b/.github/workflows/pr-comment.yaml @@ -65,6 +65,7 @@ jobs: then echo "### Ecosystem" >> $GITHUB_OUTPUT cat pr/ecosystem/ecosystem-result >> $GITHUB_OUTPUT + echo "" >> $GITHUB_OUTPUT fi if [[ -f pr/benchmark/summary.md ]]