From 9eddfada8bf491d807f6edf5f9561af4e1277371 Mon Sep 17 00:00:00 2001 From: Ricardo Signes Date: Sat, 1 Jun 2024 19:57:54 -0400 Subject: [PATCH] GitHub Actions: post to discord --- .github/workflows/discord.yml | 10 ++++++++++ 1 file changed, 10 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 000000000..a8cb552cf --- /dev/null +++ b/.github/workflows/discord.yml @@ -0,0 +1,10 @@ +name: "Discord update" + +jobs: + post-to-discord: + runs-on: ubuntu-latest + steps: + - name: Discord notification + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + uses: Ilshidur/action-discord@master