cartodb-4.42/script/ci/send_slack_notification.sh

8 lines
314 B
Bash
Raw Normal View History

2024-04-06 13:25:13 +08:00
#!/bin/bash
CHANNEL=C03474FL3
if [ $BRANCH_NAME == "master" ] && ! [ -z $BUILD_ID ]; then
MSG="Cartodb master testing $BUILD_ID has failed :sadpanda:"
echo $MSG
curl -F text="$MSG" -F channel=$CHANNEL -F as_user=false -H "Authorization: Bearer $SLACK_TOKEN" -X POST https://slack.com/api/chat.postMessage
fi