From 6df245c6ec333c2c90fbbf7efafb71f43751bf6d Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Tue, 25 Jan 2022 10:57:36 -0500 Subject: Github-workflow: Fix YAML syntax The `body` string value must be quoted because it contains a colon. Also fix an incorrect URL substitution reference in error-notice e-mail body text. (In my defense...testing this workflow is basically impractical without merging it) Signed-off-by: Chris Evich --- .github/workflows/check_cirrus_cron.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_cirrus_cron.yml b/.github/workflows/check_cirrus_cron.yml index be7750852..5c206ae2f 100644 --- a/.github/workflows/check_cirrus_cron.yml +++ b/.github/workflows/check_cirrus_cron.yml @@ -89,4 +89,4 @@ jobs: subject: Github workflow error on ${{github.repository}} to: ${{env.RCPTCSV}} from: ${{secrets.ACTION_MAIL_SENDER}} - body: Job failed: https://github.com/${{github.repository}}/runs/${{github.job}}?check_suite_focus=true + body: "Job failed: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}" -- cgit v1.2.3-54-g00ecf