From 5f4c39c228b3c331339091a8004a17d5e40e9dfc Mon Sep 17 00:00:00 2001 From: bash0816 Date: Sat, 18 Jul 2026 05:20:33 +0900 Subject: [PATCH] fix: replace heredoc with printf in release-finalize.yml to fix YAML parse error The heredoc content was written at column 0, which is shallower than the run: | block's base indentation. This caused GitHub Actions to fail parsing the workflow, making workflow_dispatch unavailable (HTTP 422 on dispatch attempts). Switching to printf avoids the YAML block scalar indentation issue entirely. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/release-finalize.yml | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release-finalize.yml b/.github/workflows/release-finalize.yml index 912623e..4a7d6eb 100644 --- a/.github/workflows/release-finalize.yml +++ b/.github/workflows/release-finalize.yml @@ -88,20 +88,15 @@ jobs: notes=$(printf 'upstream openai/codex %s 追従。' "$VER") fi fi - entry=$(cat <