Skip to content

Commit d2a55c6

Browse files
david-fraleyclaude
andcommitted
fix: add checkout step to classify-issue-severity workflow
The claude-code-action requires a git repository to be present for git configuration during setup. Without checking out the repository, the action fails with: fatal: not in a git directory error: Executable not found in $PATH: "claude" This adds the required actions/checkout@v4 step before running the claude-code-action to ensure the git directory exists. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 614e72a commit d2a55c6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/classify-issue-severity.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
result: ${{ steps.analysis.outputs.result }}
2222

2323
steps:
24+
- name: Checkout repository
25+
uses: actions/checkout@v4
26+
2427
- name: Analyze Issue Severity
2528
id: analysis
2629
uses: anthropics/claude-code-action@f0c8eb29807907de7f5412d04afceb5e24817127 # v1.0.23

0 commit comments

Comments
 (0)