forked from Supositware/Haha-Yes
16 lines
No EOL
488 B
YAML
16 lines
No EOL
488 B
YAML
stages:
|
|
- notification
|
|
success_notification:
|
|
stage: notification
|
|
script:
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh
|
|
- chmod +x send.sh
|
|
- ./send.sh success $WEBHOOK_URL
|
|
when: on_success
|
|
success_notification:
|
|
stage: notification
|
|
script:
|
|
- wget https://raw.githubusercontent.com/DiscordHooks/gitlab-ci-discord-webhook/master/send.sh
|
|
- chmod +x send.sh
|
|
- ./send.sh failure $WEBHOOK_URL
|
|
when: on_failure |