| version | npm tag or version of github-actions-annotations-reporter to run via `npx`. Defaults to `1`, matching the action major; override to pin tighter or to float across majors. | no | 1 |
| github-token | Token used for GitHub API auth. Defaults to the workflow-provided `github.token` when left empty. | no | "" |
| workflows | Whitespace-separated globs of workflow names or paths to include (e.g. "ci.yml release.*"). Individual globs may not contain whitespace — match names that do with a glob (e.g. "My*CI"). | no | "" |
| reject | Whitespace-separated globs of workflows to exclude. Same whitespace caveat as `workflows`. | no | "" |
| branch | Branch whose latest run is scanned per workflow. Empty (the default) → the repo default branch. | no | "" |
| min-severity | Minimum annotation severity to file: notice, warning, or error. | no | notice |
| management-label | Label applied to every issue managed by this action. | no | automation/annotation-reporter |
| max-issues | Cap on the number of issue create/update/reopen writes per run. Auto-close is not capped. | no | 25 |
| wontfix-labels | Comma-separated labels on closed issues that should be treated as "won't fix" suppressions. | no | wontfix |
| wontfix-respect-state-reason | Treat `state_reason: not_planned` as a suppression signal on closed issues. | no | true |
| wontfix-comment-pattern | Regex matched against the closing comment of a closed issue. Empty disables. | no | "" |
| auto-close | Auto-close managed issues whose annotation has vanished, subject to the guards below. | no | true |
| auto-close-after-days | Minimum days since the annotation was last seen before auto-closing. | no | 7 |
| auto-close-after-misses | Minimum consecutive scans the annotation must be absent for before auto-closing. | no | 3 |
| auto-close-require-success | Only consider auto-close when the workflow's latest run succeeded. Strongly recommended. | no | true |
| dry-run | Log what would change without creating, updating, or closing any issues. | no | false |
| fail-on-new | Exit non-zero if any new issues were created on this run. | no | false |
| list-annotations | Include every found annotation (full detail) in the JSON report under `annotations[]`. | no | false |