Follow your repository from Discord

Thomas Bnt ā˜• - Aug 16 '20 - - Dev Community

My Workflow

This Action is used for write at every push the progress to a project and/or updates. It's only for Discord users and work with Webhooks and secrets tokens on GitHub.

I modified this script for showing to users who follow my project to stay updated for the new version. šŸ˜

This is a preview.

Submission Category: Maintainer Must-Haves

Setup

Really simple, you must have :

  • Discord Webhook URL
  • A active repository on GitHub
  • Integrate this script to your GitHub repository ```yml

name: Discord Webhook
on: [push]
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Run Discord Webhook
uses: mrrobotdotapp/discord-webhook@main
with:
id: ${{ secrets.DISCORD_WEBHOOK_ID }}
token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}


How to get a Wehbook link on Discord ? 




*In this video, I selected two IDs. The first is `DISCORD_WEBHOOK_ID` and the second is `DISCORD_WEBHOOK_TOKEN`*

And how to put my ID and secret token in my GitHub repository ?




### Additional Resources / Info

Check out now the repository. 

GitHub logo mrrobotdotapp / classic-discord-webhook

This GitHub Action can produce fancy and more meaningful discord messages for your commits.

If you have questions, don't hesitate !

ā˜• Check my Twitter account. You can see many projects and updates. You can also support me on Buy Me a Coffee, Stripe or GitHub Sponsors. Thanks for read my post ! šŸ¤©
Enter fullscreen mode Exit fullscreen mode
. . . . . .