Skip to content

webhook

webhook #1

Workflow file for this run

name: Discord Commit Notification
on:
push:
branches:
- main
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send commit to Discord
uses: Ilshidur/action-discord@v2
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
message: |
Neuer Commit auf **${{ github.repository }}**:
${{ github.actor }} hat gepusht:
${{ github.event.head_commit.message }}