diff --git a/.github/workflows/mypy_primer_comment.yml b/.github/workflows/mypy_primer_comment.yml index 00132a2b..2169cc05 100644 --- a/.github/workflows/mypy_primer_comment.yml +++ b/.github/workflows/mypy_primer_comment.yml @@ -62,14 +62,14 @@ jobs: echo '## `mypy_primer` results' >> comment.md if [ -s "${{ runner.temp }}/artifacts/mypy_primer.diff" ]; then echo '
' >> comment.md - echo 'Changes were detected when running mypy on open source projects' >> comment.md + echo '⚠️ Changes were detected when running mypy on open source projects' >> comment.md echo '' >> comment.md echo '```diff' >> comment.md cat ${{ runner.temp }}/artifacts/mypy_primer.diff >> comment.md echo '```' >> comment.md echo '
' >> comment.md else - echo 'No ecosystem changes detected ✅' >> comment.md + echo '✅ No ecosystem changes detected' >> comment.md fi echo 'comment<> "$GITHUB_OUTPUT"