From 77523f7bec77fe6879bdcadbee60667b8acb0ba7 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 28 Feb 2025 13:13:11 +0100 Subject: [PATCH] Avoid space in update link of frontend update PR (#5694) A newline is converted to a space as per YAML folding rules. The space breaks markdown parsing of the link. Use a single line for the target version link. --- .github/workflows/update_frontend.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/update_frontend.yml b/.github/workflows/update_frontend.yml index 3f63f1776..d35cd60a1 100644 --- a/.github/workflows/update_frontend.yml +++ b/.github/workflows/update_frontend.yml @@ -75,6 +75,5 @@ jobs: title: "Update frontend to version ${{ needs.check-version.outputs.latest_version }}" body: > Update frontend from ${{ needs.check-version.outputs.current_version }} to - [${{ needs.check-version.outputs.latest_version }}] - (https://github.com/home-assistant/frontend/releases/tag/${{ needs.check-version.outputs.latest_version }}) + [${{ needs.check-version.outputs.latest_version }}](https://github.com/home-assistant/frontend/releases/tag/${{ needs.check-version.outputs.latest_version }})