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.
This commit is contained in:
Ashwin Bhat
2025-08-02 20:35:30 -07:00
parent 923d1d0592
commit e3a4ac69fe

View File

@@ -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