From a13a59a7030e45899ecd72cbae33414b933004c4 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Thu, 10 Nov 2022 14:09:29 -0500 Subject: [PATCH] GHA: Fix make_email-body script reference This component was recently migrated from being inline, into a dedicated script file. This was necessary for testing. However, it's hard to test the actual github-actions workflow YAML, and there was a typo. Fix the reference to the script filename missing the `.sh` extension. Ref: https://github.com/containers/podman/pull/16414 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 47aa39fcad..47544a686d 100644 --- a/.github/workflows/check_cirrus_cron.yml +++ b/.github/workflows/check_cirrus_cron.yml @@ -42,7 +42,7 @@ jobs: - if: steps.cron.outputs.failures > 0 shell: bash - run: './.github/actions/check_cirrus_cron/make_email_body' + run: './.github/actions/check_cirrus_cron/make_email_body.sh' - if: steps.cron.outputs.failures > 0 name: Send failure notification e-mail