From bd6494ee43edb9749075d4d79135a549f6e0c1f9 Mon Sep 17 00:00:00 2001 From: Victor Alfaro Date: Sat, 29 Jun 2024 11:19:38 -0600 Subject: [PATCH] test --- .github/workflows/frontend-technology-notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/frontend-technology-notify.yml b/.github/workflows/frontend-technology-notify.yml index 7252fa3595b8..1531f6719afe 100644 --- a/.github/workflows/frontend-technology-notify.yml +++ b/.github/workflows/frontend-technology-notify.yml @@ -37,7 +37,7 @@ jobs: action_json="${{ toJSON(inputs.actions) }}" action_found=$(jq -r '.[] | select(.action == "FRONTEND_TECHNOLOGY_NOTIFY")' <<< ${action_json}) echo "action_found=[${action_found}]" - [[ -z "${action_found}" || ${action_found} != 'null' ]] && echo 'Action not found' && exit 1 + [[ -z "${action_found}" || ${action_found} == 'null' ]] && echo 'Action not found' && exit 1 issue_number=$(jq -r '.issue_number' <<< ${action_found}) echo "issue_number=[${issue_number}]"