Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
victoralfaro-dotcms committed Jun 29, 2024
1 parent c885387 commit bd6494e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-technology-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}]"
Expand Down

0 comments on commit bd6494e

Please sign in to comment.