From 530a6f9459a58ae6d8706422f185b0e7a74b598c Mon Sep 17 00:00:00 2001 From: fujie Date: Sat, 7 Mar 2026 04:34:20 +0800 Subject: [PATCH] fix(ci): stop prepending plugin readme to release notes - Remove the auto-injected Plugin README block from release.yml - Keep release note files as the first visible content in GitHub releases - Prevent future releases from surfacing an unnecessary link above the changelog --- .github/workflows/release.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52ad6bf..495ada1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -369,11 +369,6 @@ jobs: while IFS= read -r file; do [ -z "$file" ] && continue if [ -f "$file" ]; then - # Inject plugin README link before each release note file content - plugin_dir=$(dirname "$file") - readme_url="https://github.com/Fu-Jie/openwebui-extensions/blob/main/${plugin_dir}/README.md" - echo "> 📖 [Plugin README](${readme_url})" >> release_notes.md - echo "" >> release_notes.md cat "$file" >> release_notes.md echo "" >> release_notes.md fi