-
Notifications
You must be signed in to change notification settings - Fork 144
Test claude 4 #1249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test claude 4 #1249
Changes from 11 commits
2cf5687
96c690c
5c4ab33
d08dd85
8d815c1
c19d17e
7c73862
2992c99
8001cf3
c5283f1
4d8e6ca
d29a967
0fe6f21
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "allowedTools": ["Bash(*)"] | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -28,8 +28,17 @@ jobs: | |||||
| claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} | ||||||
| github_token: ${{ github.token }} | ||||||
|
|
||||||
| show_full_output: true | ||||||
|
|
||||||
| plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' | ||||||
| plugins: 'code-review@claude-code-plugins' | ||||||
| prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' | ||||||
|
|
||||||
| claude_args: | | ||||||
| --allowedTools "Bash(*)" | ||||||
|
|
||||||
|
||||||
| claude_args: | | |
| --allowedTools "Bash(*)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
show_full_output: truecan leak sensitive information into workflow logs (including anything the review tool prints while it has access to tokens/secrets). If you keep this enabled, ensure secrets are never available in this job for untrusted PRs (especially withpull_request_target) or keep full output disabled.