From 56153596d9a3c97323453e1572ba4e22ade89760 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 8 Nov 2025 09:39:46 -0800 Subject: [PATCH] fix: release summary comment action (#6640) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/19188216288/job/54858802407 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6640-fix-release-summary-comment-action-2a56d73d365081f89bf1ec7c4e4818a4) by [Unito](https://www.unito.io) --- .github/actions/comment-release-links/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/comment-release-links/action.yaml b/.github/actions/comment-release-links/action.yaml index a7c59b6af..8b71f7154 100644 --- a/.github/actions/comment-release-links/action.yaml +++ b/.github/actions/comment-release-links/action.yaml @@ -71,7 +71,7 @@ runs: { printf '\n' "$MARKER" "$DIFF_PREFIX" "$NEW_VERSION" printf '%s\n\n' "$MESSAGE" - printf '- %s: [%s%s...%s%s](%s)\n' "$DIFF_LABEL" "$DIFF_PREFIX" "$PREV_VERSION" "$DIFF_PREFIX" "$NEW_VERSION" "$DIFF_URL" + printf -- '- %s: [%s%s...%s%s](%s)\n' "$DIFF_LABEL" "$DIFF_PREFIX" "$PREV_VERSION" "$DIFF_PREFIX" "$NEW_VERSION" "$DIFF_URL" while IFS= read -r RAW_LINE; do LINE=$(printf '%s' "$RAW_LINE" | sed 's/^[[:space:]]*//;s/[[:space:]]*$//') @@ -83,8 +83,8 @@ runs: LABEL=${LINE%%|*} URL_TEMPLATE=${LINE#*|} URL=${URL_TEMPLATE//\{\{version\}\}/$NEW_VERSION} - URL=${URL_TEMPLATE//\{\{prev_version\}\}/$PREV_VERSION} - printf '- %s: %s\n' "$LABEL" "$URL" + URL=${URL//\{\{prev_version\}\}/$PREV_VERSION} + printf -- '- %s: %s\n' "$LABEL" "$URL" done <<< "$LINKS_VALUE" printf '\n'