Skip to content

Commit

Permalink
✏️ Remove exit status if event action is push
Browse files Browse the repository at this point in the history
  • Loading branch information
dwisiswant0 committed Nov 9, 2020
1 parent 7da9810 commit a40c5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [[ "${GITHUB_EVENT_NAME}" == "pull_request" ]]; then
EVENT_ACTION=$(jq -r ".action" "${GITHUB_EVENT_PATH}")
if [[ "${EVENT_ACTION}" != "opened" ]]; then
echo "No need to run analysis. It is already triggered by the push event."
exit 78
exit
fi
fi

Expand Down

0 comments on commit a40c5bc

Please sign in to comment.