From 5b59d0a5dabcc0917f48a305a573ad179e6ba65d Mon Sep 17 00:00:00 2001 From: rahulkumarvh Date: Tue, 24 Mar 2026 11:41:55 -0700 Subject: [PATCH 1/2] fix: replace FOOTEREOF heredoc with echo calls to avoid YAML parse error The heredoc content starting with '---' at column 0 was being interpreted by the YAML parser as a document separator, terminating the run block scalar early and causing a syntax error on line 412. --- .github/workflows/openclaw-upgrade-check.yml | 22 ++++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/openclaw-upgrade-check.yml b/.github/workflows/openclaw-upgrade-check.yml index 58ba903..4f4ec4e 100644 --- a/.github/workflows/openclaw-upgrade-check.yml +++ b/.github/workflows/openclaw-upgrade-check.yml @@ -406,17 +406,17 @@ jobs: cat >> "$PR_BODY_FILE" <<'RELEASEEOF' ${{ needs.check-version.outputs.release_notes }} RELEASEEOF - cat >> "$PR_BODY_FILE" <<'FOOTEREOF' - ---- -**This is an automated version bump. Only the Dockerfile was changed.** -If release notes mention config/schema changes, manual review is required. -Do not merge if there are known regressions above. - -
Docker test output - -``` -FOOTEREOF + { + echo '' + echo '---' + echo '**This is an automated version bump. Only the Dockerfile was changed.**' + echo 'If release notes mention config/schema changes, manual review is required.' + echo 'Do not merge if there are known regressions above.' + echo '' + echo '
Docker test output' + echo '' + echo '```' + } >> "$PR_BODY_FILE" cat >> "$PR_BODY_FILE" <<'TESTLOGEOF' ${{ needs.docker-tests.outputs.test_log }} TESTLOGEOF From f2c2f7648d1f5e217ec11ac0e07ed607ed3db14b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 19:48:26 +0000 Subject: [PATCH 2/2] Initial plan