You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ This action is not hardened against prompt injection attacks and should only be
66
66
| `model-security` | Model used for security phase. | `claude-opus-4-5-20251101` | No |
67
67
| `model-validation` | Model used for finding validation phase. | `claude-sonnet-4-20250514` | No |
68
68
| `claudecode-timeout` | Timeout for ClaudeCode analysis in minutes | `20` | No |
69
-
| `run-every-commit` | Run ClaudeCode on every commit (skips cache check). Warning: May increase false positives on PRs with many commits. | `false` | No |
69
+
| `run-every-commit` | Run ClaudeCode on every commit (skips cache check). Warning: May increase false positives on PRs with many commits. | `true` | No |
70
70
| `false-positive-filtering-instructions` | Path to custom false positive filtering instructions text file | None | No |
71
71
| `custom-review-instructions` | Path to custom code review instructions text file to append to the audit prompt | None | No |
72
72
| `custom-security-scan-instructions` | Path to custom security scan instructions text file to append to the security section | None | No |
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ inputs:
61
61
run-every-commit:
62
62
description: 'Run ClaudeCode on every commit (skips cache check). Warning: This may lead to more false positives on PRs with many commits as the AI analyzes the same code multiple times.'
63
63
required: false
64
-
default: 'false'
64
+
default: 'true'
65
65
66
66
false-positive-filtering-instructions:
67
67
description: 'Path to custom false positive filtering instructions text file'
0 commit comments