From 7efb0853e576596816502d589cc31b35c8fc403c Mon Sep 17 00:00:00 2001 From: "Claude (RC validation pass)" Date: Mon, 20 Jul 2026 01:30:32 +0200 Subject: [PATCH] chore: temp workflow to fire the missed v1.7.0 Discord announce Promote RC failed at the merge step twice, so the Discord-announce step in promote.yml never ran for the v1.7.0 stable release. This one-off workflow re-runs just that step against the already-published release. Will be reverted immediately after use. --- .github/workflows/temp-discord-announce.yml | 33 +++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/temp-discord-announce.yml diff --git a/.github/workflows/temp-discord-announce.yml b/.github/workflows/temp-discord-announce.yml new file mode 100644 index 000000000..1684663b6 --- /dev/null +++ b/.github/workflows/temp-discord-announce.yml @@ -0,0 +1,33 @@ +name: TEMP - Announce stable on Discord + +on: + workflow_dispatch: + inputs: + stable_tag: + description: "Stable tag to announce (e.g. v1.7.0)" + required: true + type: string + +permissions: + contents: read + issues: read + +jobs: + announce: + name: Announce stable on Discord + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: ./.github/actions/setup + + - name: Announce stable on Discord + env: + DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }} + DISCORD_RELEASE_CHANNEL_ID: ${{ vars.DISCORD_RELEASE_CHANNEL_ID }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + STABLE_TAG: ${{ inputs.stable_tag }} + KIND: stable + run: node .github/scripts/discord-release-announce.mjs