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. 😁
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.
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 ! 🤩
Top comments (6)
nice... but didn't you fork this from
Slimefun/discord-webhook
and remove the semicolons...I would have cut you some slack, if you really made some edits to the action.. but why not just link and use github.com/Slimefun/discord-webhook/
Because I made some text and rendering changes. And there's no test coverage for the java part of it.
Read a little bit the README and the source code to learn more about it. 😄☕
I really like the Idea!
Thanks! 🙌🏼
That's awesome ! This an integration I felt was missing, well done !
Thanks!