Skip to content

philipn/shippable-slack-notifier

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Slack notifier for Shippable

Simple Slack notifier for Shippable.

Usage

  • Setup a Slack channel
  • Go to http://YOUR_ORG_NAME.slack.com/admin, sign in
  • Click Add button near "Incoming WebHooks" integration listed in the "All services" tab
  • Select desired channel for notifications, confirm
  • Copy /services/ABCDEFGH/IJKLMNOP/12312312312312312321 part of Webhook URL information
  • Enable your project in Shippable
  • Go to the org dashboard or individual dashboard page from where you have enabled your project and click on ENCRYPT ENV VARIABLE button on the top right corner of the page. (More info...)
  • Enter the following into the text field: SLACK_URL=/services/ABCDEFGH/IJKLMNOP/12312312312312312321 where /services/ABCDEFGH/IJKLMNOP/12312312312312312321 was obtained before, click Encrypt
  • Copy the encrypted variable code that will appear
  • Paste it into your shippable.yml in your global env section
  • Add the following code to your shippable.yml:
after_failure:
  - sudo apt-get install wget -y; wget -O /tmp/notify.py http://mspanc.github.io/shippable-slack-notifier/notify.py; python /tmp/notify.py --slack-url $SLACK_URL --message failure
after_success:
  - sudo apt-get install wget -y; wget -O /tmp/notify.py http://mspanc.github.io/shippable-slack-notifier/notify.py; python /tmp/notify.py --slack-url $SLACK_URL --message success

Sample shippable.yml

language: node_js

env:
  global:
    - secure: YLnGRwHdeDhzxuw123123213213621873872136782163781267836781263781232187398217398271983789217389212wRNJODyNYAXtxg2o2ndYWkETaDSpn6r7ZSpQCV7iQ9YJJHdJB3gPFNOC/rWaBLm0lYhq6NveNjJGeOxf9RClvzdYkVQzzOvyPj/flQtHjiMPonKeQ2/gUJvBVXvR/dPmn3sq1POXVjeRnYZ5WoPqFzH8rSj/B4pEVxWX4Se//ZGg2webmh9OuqSFN7uNW1xytvH3VRzcbBXMSHScSXzOyxvBLGjuuuDFc9s5qTwqa8idtPCa6ORWg==

after_failure:
  - sudo apt-get install wget -y; wget -O /tmp/notify.py http://mspanc.github.io/shippable-slack-notifier/notify.py; python /tmp/notify.py --slack-url $SLACK_URL --message failure
after_success:
  - sudo apt-get install wget -y; wget -O /tmp/notify.py http://mspanc.github.io/shippable-slack-notifier/notify.py; python /tmp/notify.py --slack-url $SLACK_URL --message success

node_js:
  - 0.10
  - 0.12

build_image: shippableimages/ubuntu1404_nodejs

before_install:
  - source ~/.nvm/nvm.sh && nvm install $SHIPPABLE_NODE_VERSION
  - node --version

install:
  - npm install

script:
  - npm run spec

License

MIT

Authors

Marcin Lewandowski

About

Simple Slack notifier for Shippable.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%