All Projects → DiscordHooks → Travis Ci Discord Webhook

DiscordHooks / Travis Ci Discord Webhook

Licence: mit
⛓ Here's your serverless solution for sending build status from Travis CI to Discord as webhooks.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Travis Ci Discord Webhook

Skyhook
Parses webhooks and forwards them in the proper format to Discord.
Stars: ✭ 263 (-3.66%)
Mutual labels:  webhook, discord, travis-ci
Notify
A dead simple Go library for sending notifications to various messaging services.
Stars: ✭ 727 (+166.3%)
Mutual labels:  hacktoberfest, discord, notifications
Discord Twitter Bot
Posts Twitter Tweets to Discord through Webhook
Stars: ✭ 219 (-19.78%)
Mutual labels:  hacktoberfest, discord
Docs
Repository of Twilio SendGrid's product documentation.
Stars: ✭ 221 (-19.05%)
Mutual labels:  hacktoberfest, travis-ci
Awesomescripts
A Collection of Awesome Scripts in Python to Ease Daily-Life. Create an issue If you have some great idea for the new script. Leave a ⭐️
Stars: ✭ 228 (-16.48%)
Mutual labels:  hacktoberfest, discord
Api
API for Current cases and more stuff about COVID-19 and Influenza
Stars: ✭ 2,323 (+750.92%)
Mutual labels:  hacktoberfest, discord
Musicbot
🎵 The original MusicBot for Discord (formerly SexualRhinoceros/MusicBot)
Stars: ✭ 2,744 (+905.13%)
Mutual labels:  hacktoberfest, discord
Miscord
Facebook Messenger to Discord bridge
Stars: ✭ 225 (-17.58%)
Mutual labels:  hacktoberfest, discord
Discordchatexporter
Exports Discord chat logs to a file
Stars: ✭ 3,198 (+1071.43%)
Mutual labels:  hacktoberfest, discord
Jetbrains Discord Integration
Discord rich presence integration for all JetBrains IDEs
Stars: ✭ 247 (-9.52%)
Mutual labels:  hacktoberfest, discord
Quarrel
A UWP discord client
Stars: ✭ 238 (-12.82%)
Mutual labels:  hacktoberfest, discord
better-discord-notifications
Scripts that send better sonarr/radarr notifications to discord
Stars: ✭ 13 (-95.24%)
Mutual labels:  notifications, webhook
Mtgjson
MTGJSON build scripts for Magic: the Gathering
Stars: ✭ 191 (-30.04%)
Mutual labels:  hacktoberfest, discord
Red Discordbot
A multi-function Discord bot
Stars: ✭ 2,855 (+945.79%)
Mutual labels:  hacktoberfest, discord
Pixieditor
PixiEditor is a lightweight pixel art editor made with .NET 5
Stars: ✭ 210 (-23.08%)
Mutual labels:  hacktoberfest, discord
Simplepresence
An easy and simple way to set your Discord Rich Presence Status through RPC (no token required)
Stars: ✭ 184 (-32.6%)
Mutual labels:  hacktoberfest, discord
Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
Stars: ✭ 2,711 (+893.04%)
Mutual labels:  hacktoberfest, notifications
Shoutrrr
Notification library for gophers and their furry friends.
Stars: ✭ 177 (-35.16%)
Mutual labels:  hacktoberfest, notifications
Discord Bot Dashboard
📊 A tool for Discord.js Bot Developers to get detailed analytics of their bots and to manage them.
Stars: ✭ 182 (-33.33%)
Mutual labels:  hacktoberfest, discord
Mtgatracker
MTGATracker is a deck tracker for MTG Arena, offering an in-game overlay that shows real time info about your deck in MTGA. It can also record & analyze your past matches to show personal aggregated gameplay history information, like lifetime wins/losses by deck, by event, etc.
Stars: ✭ 232 (-15.02%)
Mutual labels:  hacktoberfest, discord

Travis CI 🡒 Discord Webhook

Backers on Open Collective Sponsors on Open Collective

If you are looking for a way to get build (success/fail) status reports from Travis CI in Discord, stop looking. You've came to the right place.

I was waiting for the Travis team for a long time to integrate Discord Webhook support to their build notifications, but they don't seem to be doing anything about that. So I made these script to just do the same.

No need to wait for them to add Discord Webhook Integration, rest aside and just follow the guide below and stay notified of your build status.

Requirements

  • You should be using Travis CI for testing codes.
  • A Discord Server where notifications will be posted.
  • 5 minutes
  • A cup of coffee ☕

Guide

  1. Create a webhook in your Discord Server (Guide).

  2. Copy the Webhook URL.

  3. Go to your repository settings (for which you want status notifications) in Travis CI and add an environment variable called WEBHOOK_URL and paste the Webhook URL you got in the previous step. You can also specify multiple webhook addresses at once, separating each with a whitespace character, such as space.

    Add environment variable in Travis CI

  4. Add these lines to the .travis.yml file of your repository.

    after_success:
      - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
      - chmod +x send.sh
      - ./send.sh success $WEBHOOK_URL
    after_failure:
      - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
      - chmod +x send.sh
      - ./send.sh failure $WEBHOOK_URL
    
  5. Grab your coffee ☕ and enjoy! And, if you liked this, please ⭐Star this repository to show your love.

Note

  • 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.

See Also

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].