- In Github secrets, add a
WEBHOOK_URL
variable with the Discord web hook URL - In your Github actions yml file, add this to reference the variable you just created:
- To see a real example, visit here.
- uses: actions/setup-ruby@v1 - name: Send Webhook Notification if: always() env: JOB_STATUS: ${{ job.status }} WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} HOOK_OS_NAME: ${{ runner.os }} WORKFLOW_NAME: ${{ github.workflow }} run: | git clone https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL shell: bash
- Enjoy!