10000 fix: resolve duplicate step ID in docs-analysis action · coder/coder@7d62132 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7d62132

Browse files
EdwardAngertclaude
andcommitted
fix: resolve duplicate step ID in docs-analysis action
- Change 'timing' id to 'execution_timing' to avoid duplicate IDs - Update references to the step ID throughout the action - Fix value reference in outputs section for execution-time 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com& 8000 gt;
1 parent 13d9d7d commit 7d62132

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/docs-analysis/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ outputs:
120120
value: ${{ steps.analyze_structure.outputs.doc_structure }}
121121
execution-time:
122122
description: 'Execution time in seconds'
123-
value: ${{ steps.timing.outputs.duration }}
123+
value: ${{ steps.execution_timing.outputs.duration }}
124124
cache-key:
125125
description: 'Cache key for this analysis run'
126126
value: ${{ steps.cache.outputs.cache_key }}
@@ -842,7 +842,7 @@ runs:
842842
843843
# Capture execution time for performance tracking
844844
- name: Calculate execution time
845-
id: timing
845+
id: execution_timing
846846
shell: bash
847847
run: |
848848
END_TIME=$(date +%s)

0 commit comments

Comments
 (0)
0