If you are looking for a way to get build (success/fail) status reports from GitLab CI in Discord, stop looking. You've came to the right place.
- You should be using GitLab CI.
- A Discord Server where notifications will be posted.
- 5 minutes
- A cup of coffee ☕
-
Create a webhook in your Discord Server (Guide).
-
Copy the Webhook URL.
-
Go to your repository CI/CD settings (for which you want status notifications) in GitLab and add an environment variable called
WEBHOOK_URL
and paste the Webhook URL you got in the previous step. -
Add these lines, in their appropriate locations, to the
.gitlab-ci.yml
file of your repository.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 failure_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
-
Grab your coffee ☕ and enjoy! And, if you liked this, please ⭐Star this repository to show your love.
-
If within your gitlab CI Code, you have a pause within the script code, this notiction yml code will still run, to fix this, we need to add allow_failure: false, this will mean the job will not run unless told to(see screenshot)
-
If you face any issues in the scripts (and you're sure it's not on your side), please consider opening an issue and I'll fix it ASAP.
-
If you want to improve the scripts, feel free to open a pull request.
This project exists thanks to all the people who contribute.
Thank you to all our backers! 🙏 [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]