From 4eb66f50047372f65c7a9843658de5ebb77eeaf5 Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Tue, 16 Dec 2025 23:42:00 +0100 Subject: [PATCH] Fix Discord release webhook failing on large changelogs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Pin action to v1.19.0 for stability - Add remove_github_reference_links to strip commit hash section - Fixes embed validation error from oversized release notes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/discord-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/discord-release.yml b/.github/workflows/discord-release.yml index 63460eda..dfc0ed40 100644 --- a/.github/workflows/discord-release.yml +++ b/.github/workflows/discord-release.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4 - name: Send to Discord - uses: SethCohen/github-releases-to-discord@v1 + uses: SethCohen/github-releases-to-discord@v1.19.0 with: webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }} color: "5865F2" @@ -21,4 +21,5 @@ jobs: footer_title: "Auto Claude Changelog" footer_timestamp: true reduce_headings: true + remove_github_reference_links: true