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}]"