From e3a4ac69fe1d4e0e6dab15690895f5ee291b06e3 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Sat, 2 Aug 2025 20:35:30 -0700 Subject: [PATCH] fix: update step reference from claude-code to claude in format-turns Fixed critical bug where format-turns step was still referencing the old step name 'claude-code' instead of the new 'claude' step name. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5c9101c..4081a13 100644 --- a/action.yml +++ b/action.yml @@ -247,7 +247,7 @@ runs: shell: bash run: | # Try to format the turns, but if it fails, dump the raw JSON - if bun run ${{ github.action_path }}/src/entrypoints/format-turns.ts "${{ steps.claude-code.outputs.execution_file }}" >> $GITHUB_STEP_SUMMARY 2>/dev/null; then + if bun run ${{ github.action_path }}/src/entrypoints/format-turns.ts "${{ steps.claude.outputs.execution_file }}" >> $GITHUB_STEP_SUMMARY 2>/dev/null; then echo "Successfully formatted Claude Code report" else echo "## Claude Code Report (Raw Output)" >> $GITHUB_STEP_SUMMARY