We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4efbb3 commit 594475fCopy full SHA for 594475f
.github/workflows/claudecheck.yml
@@ -0,0 +1,22 @@
1
+name: Security Review
2
+
3
+permissions:
4
+ pull-requests: write # Needed for leaving PR comments
5
+ contents: read
6
7
+on:
8
+ pull_request:
9
10
+jobs:
11
+ security:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ ref: ${{ github.event.pull_request.head.sha || github.sha }}
17
+ fetch-depth: 2
18
19
+ - uses: anthropics/claude-code-security-review@main
20
21
+ comment-pr: true
22
+ claude-api-key: ${{ secrets.CLAUDE_API_KEY }}
0 commit comments