From 56dccf546acf767088ffd11e612ef425d63b1e84 Mon Sep 17 00:00:00 2001 From: Migue Magic Date: Sat, 30 May 2026 22:23:13 -0400 Subject: [PATCH 1/2] Add GitHub Action to notify Discord on release --- .github/workflows/release-discord.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 0000000..414926d --- /dev/null +++ b/.github/workflows/release-discord.yml @@ -0,0 +1,18 @@ +name: Notify Discord on Release + +on: + release: + types: [published] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Send Discord Notification + uses: tsickert/discord-webhook@v5.0.0 + with: + webhook-url: ${{ secrets.DISCORD_RELEASE_WEBHOOK }} + embed-title: "${{ github.event.release.name }}" + embed-description: "${{ github.event.release.body }}" + embed-url: "${{ github.event.release.html_url }}" + embed-color: #000000 From 3ed6f4b08529a982b0a8b780742d3da9f4d83151 Mon Sep 17 00:00:00 2001 From: Migue Magic Date: Sat, 30 May 2026 22:39:59 -0400 Subject: [PATCH 2/2] Add SPDX license headers to release-discord.yml Add SPDX license information to release-discord.yml --- .github/workflows/release-discord.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-discord.yml b/.github/workflows/release-discord.yml index 414926d..3b0659e 100644 --- a/.github/workflows/release-discord.yml +++ b/.github/workflows/release-discord.yml @@ -1,3 +1,6 @@ +# SPDX-FileCopyrightText: 2026 Magirenko Technologies +# +# SPDX-License-Identifier: Apache-2.0 name: Notify Discord on Release on: