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