blob: 59d3cb3745c88befae45b9bb342ecb85dc388d00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
language: node_js
node_js:
- "node"
after_success:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh success $WEBHOOK_URL
after_failure:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh failure $WEBHOOK_URL
|