From 28bfab5eff5942ef9af8cb067b7845057b6e824c Mon Sep 17 00:00:00 2001 From: Zanie Date: Wed, 25 Oct 2023 14:57:00 -0500 Subject: [PATCH] Fix titles --- .github/workflows/pr-comment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-comment.yaml b/.github/workflows/pr-comment.yaml index bc8ce8e898..c52868d59e 100644 --- a/.github/workflows/pr-comment.yaml +++ b/.github/workflows/pr-comment.yaml @@ -57,14 +57,14 @@ jobs: - name: Generate `check` ecosystem comment if: steps.download-ecosystem-result-check.outputs.found_artifact == 'true' run: | - echo "## Ecosystem results `ruff check`" >> comment.txt + echo '## Ecosystem results `ruff check`' >> comment.txt cat pr/ecosystem/ecosystem-result-check >> comment.txt echo "
" >> comment.txt - name: Generate `format` ecosystem comment if: steps.download-ecosystem-result-format.outputs.found_artifact == 'true' run: | - echo "## Ecosystem results `ruff format`" >> comment.txt + echo '## Ecosystem results `ruff format`' >> comment.txt cat pr/ecosystem/ecosystem-result-format >> comment.txt echo "
" >> comment.txt