Skip to content

Instantly share code, notes, and snippets.

@dazzz1er
Created May 19, 2015 12:44
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 dazzz1er/e997dd80216766ebc2d5 to your computer and use it in GitHub Desktop.
Save dazzz1er/e997dd80216766ebc2d5 to your computer and use it in GitHub Desktop.
Slack notify on git commit
#!/bin/sh
#notifyslack.bat
message=$(git log -1 HEAD --pretty=format:%s)
curl -X POST --data-urlencode 'payload={"channel": "#channel", "username": "<project>bot", "text": "<Project> was updated: '"$message"'", "icon_emoji": ":ghost:"}' hook_url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment