From 3a7005d9f48c35597af9f866ecdc93e945ae4d44 Mon Sep 17 00:00:00 2001 From: Ritwik G <100672805+ritwik-g@users.noreply.github.com> Date: Sun, 2 Feb 2025 15:20:56 +0530 Subject: [PATCH] Updated echo with printf to preserve special characters in the report Signed-off-by: Ritwik G <100672805+ritwik-g@users.noreply.github.com> --- .github/workflows/ci-container-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-container-build.yaml b/.github/workflows/ci-container-build.yaml index 333aa5a59..82d7552b1 100644 --- a/.github/workflows/ci-container-build.yaml +++ b/.github/workflows/ci-container-build.yaml @@ -77,7 +77,7 @@ jobs: id: tox run: | tox -e e2e && - echo -e "## E2E Tests\n\n$(cat e2e-report.md)" > e2e-report.md + printf '$$\\textcolor{#0051db}{\\tt{E2E\\ Tests}}$$\n\n%s' "$(cat e2e-report.md)" > e2e-report.md - name: Render the report to the PR uses: marocchino/sticky-pull-request-comment@v2