Skip to content

Instantly share code, notes, and snippets.

View juancho088's full-sized avatar

Juan Urrego juancho088

View GitHub Profile
@juancho088
juancho088 / codedeploy-to-slack.js
Last active February 23, 2018 10:32 — forked from teeli/codedeploy-to-slack.js
CodeDeploy notifications to Slack (AWS Lambda via SNS)
var https = require('https');
var util = require('util');
// Based on https://gist.github.com/teeli/29a0e79397fa5560e1819b80025981af
function formatTitle(key) {
return key.replace(/([A-Z])/g, ' $1')
.replace(/^./, function (str) {
return str.toUpperCase();
});