From e5b1aa85a268fdb4768e2fb71370d3c6876cbcbe Mon Sep 17 00:00:00 2001 From: David Papp Date: Mon, 21 Oct 2024 11:46:32 +0200 Subject: [PATCH] feat: Add discord notification for release pipeline --- .github/workflows/discord-notifications.yaml | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/discord-notifications.yaml diff --git a/.github/workflows/discord-notifications.yaml b/.github/workflows/discord-notifications.yaml new file mode 100644 index 0000000..70d7494 --- /dev/null +++ b/.github/workflows/discord-notifications.yaml @@ -0,0 +1,21 @@ +on: + release: + types: [published] + +jobs: + github-releases-to-discord: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Github Releases To Discord + uses: SethCohen/github-releases-to-discord@v1 + with: + webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} + color: "2105893" + username: "Release Changelog" + avatar_url: "https://cdn.discordapp.com/avatars/487431320314576937/bd64361e4ba6313d561d54e78c9e7171.png" + content: "||@everyone||" + footer_title: "Changelog" + footer_icon_url: "https://cdn.discordapp.com/avatars/487431320314576937/bd64361e4ba6313d561d54e78c9e7171.png" + footer_timestamp: true