Created
December 8, 2018 16:57
-
-
Save EtienneDepaulis/f371a473e048b8617c0a6ab1546c935e to your computer and use it in GitHub Desktop.
CircleCi notifications article - Main code with slack integration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# circleci-notifications.rb | |
require 'json' | |
require 'slack-ruby-client' | |
Slack.configure do |config| | |
config.token = ENV['SLACK_TOKEN'] | |
end | |
SLACK_USERS = { | |
'EtienneDepaulis' => 'etienne' | |
}.freeze | |
def handler(event:, context:) | |
body = JSON.parse(event['body']) | |
payload = body['payload'] | |
if payload['failed'] | |
user = payload['user'] | |
github_login = user['login'] | |
slack_login = SLACK_USERS.fetch github_login | |
reponame = payload['reponame'] | |
build_url = payload['build_url'] | |
branch = payload['branch'] | |
attachments = [ | |
{ | |
"fallback": 'Failed build', | |
"title": 'Failed build', | |
"color": "#d02323", | |
"fields": [ | |
{ | |
"title": "Repo", | |
"value": reponame, | |
"short": true | |
}, | |
{ | |
"title": "Branch", | |
"value": branch, | |
"short": true | |
} | |
] | |
}, | |
{ | |
"fallback": 'Failed build', | |
"actions": [ | |
{ | |
"type": "button", | |
"text": "Check on CircleCi :circleci:", # Yes, we have a lot of custom emojis ;) | |
"url": build_url | |
} | |
] | |
} | |
] | |
client = Slack::Web::Client.new | |
client.chat_postMessage(channel: "@#{slack_login}", attachments: attachments) | |
message = 'Failure detected' | |
else | |
message = 'No failure detected' | |
end | |
{ statusCode: 200, body: JSON.generate({ message: message }) } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment