Skip to content

Commit

Permalink
Try with unicode escapes
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMoll committed Mar 18, 2024
1 parent c5213d9 commit a953952
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/webcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Error message if cURL fails
if: failure()
# Hopefully displays a nicely formatted error
run: echo "::error title=cURL:: ${{ steps.curl.outputs.OUTPUT }}"
# TODO: turn this into a block with a "this might mean Runciman is offline"
run: echo "\u003a\u003aerror title=cURL\u003a\u003a${{ steps.curl.outputs.OUTPUT }}"

- uses: actions/checkout@v4
with:
Expand All @@ -48,5 +49,6 @@ jobs:

- name: Error message if SHA mismatches
# Only run if this specific step failed.
# TODO: turn this into a block with a "this might mean xxx is broken"
if: failure() && steps.grep.conclusion == 'failure'
run: echo ::error title=SHA mismatch:: The commit SHA ${{steps.git_sha.outputs.SHA}} was not found in index.html!
run: echo \u003a\u003error title=SHA mismatch\u003a\u003The commit SHA ${{steps.git_sha.outputs.SHA}} was not found in index.html!

0 comments on commit a953952

Please sign in to comment.