From cad1fae3e4ec772a64ed30483a5f706dba3317bf Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 13 Jul 2025 10:13:02 +1000 Subject: [PATCH] Fix YAML syntax error in v3-check-changelog workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed multiline commit message using HEREDOC syntax on line 421 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/v3-check-changelog.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/v3-check-changelog.yml b/.github/workflows/v3-check-changelog.yml index 53c707ca1..0add19f71 100644 --- a/.github/workflows/v3-check-changelog.yml +++ b/.github/workflows/v3-check-changelog.yml @@ -34,7 +34,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: '1.24' + go-version: '1.23' - name: Get PR information id: pr_info @@ -416,12 +416,15 @@ jobs: else # Add and commit the changes git add docs/src/content/docs/changelog.mdx - git commit -m "🤖 Fix changelog: move entries to Unreleased section + git commit -m "$(cat <<'EOF' +🤖 Fix changelog: move entries to Unreleased section This automated fix was triggered by the v3-check-changelog workflow. Misplaced entries in already-released versions have been moved to the [Unreleased] section. -Co-Authored-By: GitHub Action " +Co-Authored-By: GitHub Action +EOF +)" # Push the changes git push origin HEAD