From 16aa1b2fd83a968636c97f58f37d3f2911f2651b Mon Sep 17 00:00:00 2001 From: UltraLionFr Date: Wed, 20 Aug 2025 23:18:12 +0200 Subject: [PATCH] chore: add Discord GitHub Actions workflow --- .github/workflows/discord.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/discord.yml diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml new file mode 100644 index 0000000..03580a6 --- /dev/null +++ b/.github/workflows/discord.yml @@ -0,0 +1,15 @@ +name: Discord Webhook + +on: + push: + branches: + - main + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Discord Commit Webhook + uses: johnnyhuy/actions-discord-git-webhook@v1.0.4 + with: + webhook: ${{ secrets.DISCORD_WEBHOOK_URL }} \ No newline at end of file