Skip to content

Commit 5c3dc28

Browse files
committed
Default run-every-commit to true
1 parent 7c407e4 commit 5c3dc28

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This action is not hardened against prompt injection attacks and should only be
6666
| `model-security` | Model used for security phase. | `claude-opus-4-5-20251101` | No |
6767
| `model-validation` | Model used for finding validation phase. | `claude-sonnet-4-20250514` | No |
6868
| `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 |
7070
| `false-positive-filtering-instructions` | Path to custom false positive filtering instructions text file | None | No |
7171
| `custom-review-instructions` | Path to custom code review instructions text file to append to the audit prompt | None | No |
7272
| `custom-security-scan-instructions` | Path to custom security scan instructions text file to append to the security section | None | No |

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ inputs:
6161
run-every-commit:
6262
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.'
6363
required: false
64-
default: 'false'
64+
default: 'true'
6565

6666
false-positive-filtering-instructions:
6767
description: 'Path to custom false positive filtering instructions text file'

0 commit comments

Comments
 (0)