From d9bdcc4bdc264058e2cb35d5f870d04b2f90bc67 Mon Sep 17 00:00:00 2001 From: "Jason C. Leach" Date: Fri, 25 Oct 2024 11:04:03 -0700 Subject: [PATCH] fix: pipe logic Signed-off-by: Jason C. Leach --- .github/workflows/actions/early-exit-check/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/early-exit-check/action.yml b/.github/workflows/actions/early-exit-check/action.yml index aee91ea5..6a68fe1c 100644 --- a/.github/workflows/actions/early-exit-check/action.yml +++ b/.github/workflows/actions/early-exit-check/action.yml @@ -34,7 +34,7 @@ runs: if [ $change_count -gt 0 ]; then # A result greater than 0 means there are changes # in the specified directories. - echo "result=true" >> $GITHUB_OUTPUT + echo "result=zz" >> $GITHUB_OUTPUT else - echo "result=false" >> $GITHUB_OUTPUT + echo "result=xx" >> $GITHUB_OUTPUT fi