From 8545410fefff8ef5c7364bb79e5f4c29be102ca5 Mon Sep 17 00:00:00 2001 From: Koudai Aono Date: Tue, 23 Dec 2025 07:34:03 +0000 Subject: [PATCH] fix: quote JSON schema in claude_args to preserve double quotes --- .github/workflows/release-draft.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-draft.yaml b/.github/workflows/release-draft.yaml index 77359c2d0..56d6fd0cc 100644 --- a/.github/workflows/release-draft.yaml +++ b/.github/workflows/release-draft.yaml @@ -79,7 +79,7 @@ jobs: --max-turns 5 --output-format json --json-schema - {"type":"object","properties":{"has_breaking_changes":{"type":"boolean","description":"Whether this PR contains breaking changes"},"breaking_changes_content":{"type":"string","description":"Formatted breaking changes section content (without ## Breaking Changes header), or empty string if none"},"reasoning":{"type":"string","description":"Brief explanation of why this is or is not a breaking change"}},"required":["has_breaking_changes","breaking_changes_content","reasoning"]} + '{"type":"object","properties":{"has_breaking_changes":{"type":"boolean","description":"Whether this PR contains breaking changes"},"breaking_changes_content":{"type":"string","description":"Formatted breaking changes section content (without ## Breaking Changes header), or empty string if none"},"reasoning":{"type":"string","description":"Brief explanation of why this is or is not a breaking change"}},"required":["has_breaking_changes","breaking_changes_content","reasoning"]}' - name: Parse Claude output id: parse