From 259405b335601e5fd4a83f671f91fc3e65cc1a61 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Sat, 28 Feb 2026 01:53:35 +0200 Subject: [PATCH] ci: notify Discord when GitHub releases are published --- .github/workflows/release-discord.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release-discord.yml diff --git a/.github/workflows/release-discord.yml b/.github/workflows/release-discord.yml new file mode 100644 index 00000000..d0b2632a --- /dev/null +++ b/.github/workflows/release-discord.yml @@ -0,0 +1,22 @@ +name: Release Discord Notification + +on: + release: + types: + - published + +jobs: + github-releases-to-discord: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Send release to Discord + uses: SethCohen/github-releases-to-discord@v1 + with: + webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} + color: "2105893" + username: "OpenChamber Releases" + footer_title: "OpenChamber Changelog" + reduce_headings: true