From 60acf272b5b526214193500a65a1b8f09033df94 Mon Sep 17 00:00:00 2001 From: Thomas Bnt Date: Wed, 31 Jan 2024 20:22:11 +0100 Subject: [PATCH] fix: GitHub Actions Discord Notifications --- .github/workflows/discord_notification.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/discord_notification.yml b/.github/workflows/discord_notification.yml index 2338be3..4e672c1 100644 --- a/.github/workflows/discord_notification.yml +++ b/.github/workflows/discord_notification.yml @@ -1,15 +1,13 @@ name: Discord Webhook - on: [push] - jobs: - report: + Discord_notification: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v1 - - name: Run Discord Webhook - uses: Mist3r-Robot/classic-discord-webhook@main - with: - id: ${{ secrets.DISCORD_WEBHOOK_ID }} - token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} + - name: Checkout repository + uses: actions/checkout@v3 + - name: Run Discord Webhook + uses: mrrobotdotapp/classic-discord-webhook@main + with: + id: ${{ secrets.DISCORD_WEBHOOK_ID }} + token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}