-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathslack_notification.sh
executable file
·24 lines (18 loc) · 1.07 KB
/
slack_notification.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
committer_email=$(git log --no-merges -n 1 HEAD --pretty=%ae)
slack_user_list=$(curl -H "application/x-www-form-urlencoded" "https://slack.com/api/users.list?token=$KHALEESI_SLACK_TOKEN&pretty=1")
members=()
members+=($(echo "$slack_user_list" | jq -r ".members[$a].id"))
for (( a=0; a<${#members[@]}; a++ ))
do
slack_email=$(echo "$slack_user_list" | jq -r ".members[$a].profile.email")
if [[ $committer_email == $slack_email ]]; then
slack_id=$(echo "$slack_user_list" | jq -r ".members[$a].id")
break
fi
done
echo "Committer email $committer_email has slack id $slack_id"
echo "======================================================="
# Publish sns topic with json of relevant build info
printf "{\"committer\":\""$slack_id"\", \"job\":\""$JOB_NAME"\", \"branch\":\""$GIT_BRANCH"\", \"build_number\":\""$BUILD_NUMBER"\", \"build_url\":\""$BUILD_URL"\", \"build_status\":\""$STATUS"\"}" >> /$ruby_workspace/build/slack_notification.json
aws sns publish --topic-arn $JENKINS_SLACKBOT --message file://$ruby_workspace/build/slack_notification.json --region us-west-1