Skip to content

Instantly share code, notes, and snippets.

@EtienneDepaulis
Created December 8, 2018 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EtienneDepaulis/f371a473e048b8617c0a6ab1546c935e to your computer and use it in GitHub Desktop.
Save EtienneDepaulis/f371a473e048b8617c0a6ab1546c935e to your computer and use it in GitHub Desktop.
CircleCi notifications article - Main code with slack integration
# 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