From 20ae00d2187619250d74c5cbbc3b34807faa833b Mon Sep 17 00:00:00 2001 From: kyle Date: Sat, 7 Oct 2023 04:56:09 -0700 Subject: [PATCH] TEMP: disable schedule log block --- .github/composite_actions/log_cw_metric_wrapper/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/composite_actions/log_cw_metric_wrapper/action.yaml b/.github/composite_actions/log_cw_metric_wrapper/action.yaml index eeefff43aa..902e11951f 100644 --- a/.github/composite_actions/log_cw_metric_wrapper/action.yaml +++ b/.github/composite_actions/log_cw_metric_wrapper/action.yaml @@ -56,7 +56,7 @@ runs: - name: Exit if not scheduled shell: bash run: | - if [ "${{ github.event_name }}" != "schedule" ]; then + if [ "${{ github.event_name }}" == "schedule" ]; then echo "This was not triggered by a schedule, skipping." echo "SKIP_CW=true" >> $GITHUB_ENV fi