All Projects → DiscordHooks → appveyor-discord-webhook

DiscordHooks / appveyor-discord-webhook

Licence: MIT license
⛓ Here's your serverless solution for sending build status from AppVeyor to Discord as webhooks.

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to appveyor-discord-webhook

gitlab-ci-discord-webhook
⛓ Here's your serverless solution for sending build status from GitLab CI to Discord as webhooks.
Stars: ✭ 32 (-38.46%)
Mutual labels:  webhook, discord-webhooks, discord-webhook-notifications
CTFtime-Discord-hooks
A script that will send the upcoming CTFs to given discord webhook
Stars: ✭ 18 (-65.38%)
Mutual labels:  webhook, discord-webhooks
Skyhook
Parses webhooks and forwards them in the proper format to Discord.
Stars: ✭ 263 (+405.77%)
Mutual labels:  webhook, appveyor
Ngrok
Expose your localhost to the web. Node wrapper for ngrok.
Stars: ✭ 1,897 (+3548.08%)
Mutual labels:  webhook
Dhooks
A simple python Discord webhook API wrapper
Stars: ✭ 136 (+161.54%)
Mutual labels:  webhook
Telegrambots
Java library to create bots using Telegram Bots API
Stars: ✭ 2,728 (+5146.15%)
Mutual labels:  webhook
rss2hook
POST to webhook(s) when new feed-items appear.
Stars: ✭ 33 (-36.54%)
Mutual labels:  webhook
Stage Ci
Automatic deploy previews for your PRs using zeit.co/now.
Stars: ✭ 132 (+153.85%)
Mutual labels:  webhook
Harpoon
GitHub WebHook server written in Go
Stars: ✭ 240 (+361.54%)
Mutual labels:  webhook
Webhookit
Simple git webhook cli tool for automation tasks, bind git webhook to action.
Stars: ✭ 177 (+240.38%)
Mutual labels:  webhook
Caddy Git
git middleware for Caddy
Stars: ✭ 175 (+236.54%)
Mutual labels:  webhook
Hwamei
企业微信webhook,企业微信群机器人webhook,支持Github、Gitlab、Sentry等Webhook
Stars: ✭ 142 (+173.08%)
Mutual labels:  webhook
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+5365.38%)
Mutual labels:  webhook
Tradingview Webhook Bot
⚙️ Send TradingView alerts to Telegram, Discord, Slack, Twitter and/or Email.
Stars: ✭ 135 (+159.62%)
Mutual labels:  webhook
Git Auto Deploy
Deploy your GitHub, GitLab or Bitbucket projects automatically on Git push events or web hooks
Stars: ✭ 251 (+382.69%)
Mutual labels:  webhook
Keel
Kubernetes Operator to automate Helm, DaemonSet, StatefulSet & Deployment updates
Stars: ✭ 1,870 (+3496.15%)
Mutual labels:  webhook
Example Bot
[WIP] An A-Z example of a PHP Telegram Bot.
Stars: ✭ 211 (+305.77%)
Mutual labels:  webhook
Go Git Webhook
Golang 实现的自动化部署和运维工具,支持:Github / GitLab / GitOsc。
Stars: ✭ 173 (+232.69%)
Mutual labels:  webhook
Pyngrok
A Python wrapper for ngrok
Stars: ✭ 159 (+205.77%)
Mutual labels:  webhook
Hooka
😎 A webhook server with zero coding
Stars: ✭ 180 (+246.15%)
Mutual labels:  webhook

AppVeyor 🡒 Discord Webhook

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

Rest aside and just follow the guide below and stay notified of your build status.

Requirements

  • You should be using AppVeyor 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 project settings (for which you want status notifications) in AppVeyor and add an environment variable called WEBHOOK_URL and paste the Webhook URL you got in the previous step.

    Add environment variable in AppVeyor

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

    on_success:
      - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
      - ps: ./send.ps1 success $env:WEBHOOK_URL
    on_failure:
      - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
      - ps: ./send.ps1 failure $env: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

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