From 980d5b3622a7ac5cb7cb0cc6c76ec147affc4361 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Thu, 20 Oct 2022 10:16:23 -0400 Subject: [PATCH] GHA: Simplify script reference This workflow was originally crafted to be (somehow) reused with different scripts. That never happened and the extra indirection is confusing and hard to maintain. Remove 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 a6d00227a3..51e5c40aab 100644 --- a/.github/workflows/check_cirrus_cron.yml +++ b/.github/workflows/check_cirrus_cron.yml @@ -38,7 +38,7 @@ jobs: - name: Get failed cron names and Build IDs id: cron - run: './.github/actions/${{ github.workflow }}/${{ github.job }}.sh' + run: './.github/actions/check_cirrus_cron/cron_failures.sh' - if: steps.cron.outputs.failures > 0 shell: bash