Skip to content

Instantly share code, notes, and snippets.

@richdownie
Last active March 7, 2019 16:59
Show Gist options
  • Save richdownie/c5de8497b6df2f14c9b48fd49645b9c2 to your computer and use it in GitHub Desktop.
Save richdownie/c5de8497b6df2f14c9b48fd49645b9c2 to your computer and use it in GitHub Desktop.
Ping Slack with Git Branch
require 'slack-notifier'
slack = Slack::Notifier.new "https://hooks.slack.com/services/<token", channel: 'your_channel',
username: 'TestBot' #slack_speak
git_branch = IO.popen("git symbolic-ref --short HEAD") {|pipe| pipe.read.chomp }
slack.ping "#{git_branch}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment