From d20d3d65aa12df8facb26c6c206461ab007aafc1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Jun 2026 11:39:57 +0000 Subject: [PATCH] Fix PowerShell here-string indentation in vendor.yml Replace indented here-strings inside if/else blocks with simple string literals. PowerShell requires the "@" terminator to be at column 0 in the script; when inside an indented block the YAML base-indent stripping left 2 leading spaces, causing the parser error "White space is not allowed before the string terminator". --- .github/workflows/vendor.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/vendor.yml b/.github/workflows/vendor.yml index 629c7b7..9f0980e 100644 --- a/.github/workflows/vendor.yml +++ b/.github/workflows/vendor.yml @@ -155,17 +155,10 @@ jobs: $count = [int]$env:COUNT_UPDATED if ($count -eq 0) { - $summary = @" - ### ✅ No Updates Available - - All vendor dependencies are up to date! 🎉 - "@ + $summary = "### ✅ No Updates Available`n`nAll vendor dependencies are up to date! 🎉`n" } else { $word = if ($count -eq 1) { 'dependency' } else { 'dependencies' } - $summary = @" - ### 🔄 Updates Found - - "@ + $summary = "### 🔄 Updates Found`n`n" if ($count -eq 1) { $summary += '📦 **' + $env:SINGLE_DEP_NAME + '** updated from `' + $env:SINGLE_DEP_OLD_VERSION + '` to `' + $env:SINGLE_DEP_NEW_VERSION + '`' + "`n" + "`n" } else {