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
@@ -67,7 +67,7 @@ This action is not hardened against prompt injection attacks and should only be
67
67
| `custom-security-scan-instructions` | Path to custom security scan instructions text file to append to the security section | None | No |
68
68
| `dismiss-stale-reviews` | Dismiss previous bot reviews when posting a new review (useful for follow-up commits) | `true` | No |
69
69
| `skip-draft-prs` | Skip code review on draft pull requests | `true` | No |
70
-
| `require-label` | When set, the `labeled` trigger only runs if this specific label was added. Other triggers (`opened`, `synchronize`, `reopened`) always run regardless. Add `labeled` to your workflow `pull_request` types to enable on-demand reviews via label. | None | No |
70
+
| `require-label` | Only run review if this label is present. Leave empty to review all PRs. Add `labeled` to your workflow `pull_request` types to trigger onlabel addition. | None | No |
Copy file name to clipboardExpand all lines: action.yml
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ inputs:
64
64
default: 'true'
65
65
66
66
require-label:
67
-
description: 'When set, the "labeled" trigger will only run if this specific label was added. Other triggers (opened, synchronize, reopened) always run regardless of this setting. Add "labeled" to your workflow pull_request types to enable on-demand reviews via label.'
67
+
description: 'Only run review if this label is present on the PR. Leave empty to review all PRs. To trigger on label addition, add "labeled" to your workflow pull_request types.'
0 commit comments