From d57b8a7045ac8584a01c70561b0c89679dab860f 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 | 14 ++++++++++++++ 1 file changed, 14 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..aa2fdbffc --- /dev/null +++ b/.github/workflows/discord.yml @@ -0,0 +1,14 @@ +name: "Discord update" +on: + issue: + pull_request: + push: + +jobs: + post-to-discord: + runs-on: ubuntu-latest + steps: + - name: Discord notification + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + uses: Ilshidur/action-discord@master