Skip to content

Commit

Permalink
Don't block if no Slack user found (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelestineKao authored Jun 1, 2020
1 parent b54e423 commit 521a8b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/slack-pr-author.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ steps:
if [[ $SLACK_USER_ID == "null" ]]; then
echo "No Slack user found with email $PR_AUTHOR_EMAIL"
exit 1
# Don't fail the command. This shouldn't be a blocker.
exit 0
fi
MESSAGE="*<< parameters.message >>*"
Expand Down

0 comments on commit 521a8b7

Please sign in to comment.