Posso integrar um canal Discord com solicitações pull do GitHub?

3

Eu tenho uma equipe de programação que compartilha código usando o GitHub, mas comunica principalmente através do Discord. Como posso configurar a Discórdia da minha equipe para incluir automaticamente atualizações sobre os commits do GitHub e solicitações de pull?

    
por Steven M. Vascellaro 18.03.2017 / 05:36

2 respostas

4

A integração das atualizações do GitHub em um canal Discord pode ser feita com atualizações do webhook.

Via Discórdia - Introdução aos Webhooks

  1. Get the webhook URL for the server/channel you want to receive messages:

Getting webhook for #gitupdates

  1. Open the webhook settings in your GitHub repository settings (Settings > Webhooks)

  1. Click the "Add webhook" button, and enter the Discord-generated URL in the "Payload URL" section.

  2. To ensure the webhook displays messages properly, make sure to append '/github' at the end of your URL.

  3. For content type, stick with application/json, then customize which kind of events trigger webhook messages.

Customizing webhook notifications

  1. Click the last "Add webhook" button beneath the event notifications customization option, and you're all set!

Github notifications via webhook in Discord

    
por 18.03.2017 / 05:36
-1

Gostaria de acrescentar que, a partir de agora, ganchos da Web Discord podem receber notificações do Slack. Basta adicionar /slack ao URL do gancho da web. Isso aumenta muito o número de aplicativos que a Discord pode receber notificações.

    
por 17.07.2018 / 16:15