From 529ac8296033d37d4218c79bfc1cd11412d1968a Mon Sep 17 00:00:00 2001 From: solareon <769465+solareon@users.noreply.github.com> Date: Fri, 14 Jun 2024 22:24:32 +0200 Subject: [PATCH] chore(actions): better webhooks --- .github/workflows/discord-push.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/discord-push.yml diff --git a/.github/workflows/discord-push.yml b/.github/workflows/discord-push.yml new file mode 100644 index 0000000..38f978f --- /dev/null +++ b/.github/workflows/discord-push.yml @@ -0,0 +1,13 @@ +name: Discord Webhook +on: [push] +jobs: + Discord_notification: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Run Discord Webhook + uses: solareon/discord-commits@main + with: + id: ${{ secrets.DISCORD_WEBHOOK_ID }} + token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}