Skip to content

Commit 7332c52

Browse files
committed
Adding debugging step
1 parent 01a1bd8 commit 7332c52

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/claude.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ jobs:
2828
uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 1
31-
31+
- name: Debug secrets
32+
run: |
33+
if [ -z "${{ secrets.ANTHROPIC_API_KEY }}" ]; then
34+
echo "ANTHROPIC_API_KEY is not set or available in this context."
35+
else
36+
echo "ANTHROPIC_API_KEY is available."
37+
fi
3238
- name: Run Claude PR Action
3339
uses: anthropics/claude-code-action@beta
3440
with:

0 commit comments

Comments
 (0)