-
Notifications
You must be signed in to change notification settings - Fork 0
fix: correct inert CodeRabbit keys (osv-scanner -> osvScanner, github_checks -> github-checks) #46
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
Changes from all commits
f79476a
32ec516
2daab70
a1cf33a
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 |
|---|---|---|
|
|
@@ -74,7 +74,12 @@ reviews: | |
| enabled: true | ||
| semgrep: | ||
| enabled: true | ||
| osv-scanner: | ||
| # The schema key is `osvScanner`, camelCase. This read `osv-scanner` since the file was | ||
| # written; `tools` allows additional properties, so CodeRabbit accepted the misspelling | ||
| # silently and ran no OSV scanning at all. Verified against the live v2 schema | ||
| # (storage.googleapis.com/coderabbit_public_assets/schema.v2.json, 2026-08-06): the 57 tool | ||
| # keys include `osvScanner` and do not include `osv-scanner`. (#1083) | ||
| osvScanner: | ||
| enabled: true | ||
| shellcheck: | ||
| enabled: true | ||
|
|
@@ -90,7 +95,12 @@ reviews: | |
| enabled: true | ||
| packages: | ||
| - "ast-grep-essentials" | ||
|
Comment on lines
95
to
97
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Remaining tool keys in the block were not re-verified in this PR The PR fixes two mis-keyed entries but leaves the rest ( (Refers to lines 72-97) Was this helpful? React with 👍 or 👎 to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ran the requested verification pass against the live v2 schema (schema.v2.json): all remaining tool keys (gitleaks, semgrep, shellcheck, yamllint, markdownlint, actionlint, ruff, ast-grep) and their sub-keys (packages, enabled, timeout_ms) exactly match documented schema keys. No other entry is inert, so no change is required. |
||
| github_checks: | ||
| # Same inert-key class as `osvScanner` above: the schema key is `github-checks` | ||
| # (hyphenated), not `github_checks`, so this block was silently accepted and ignored — | ||
| # GitHub Checks integration ran on its 90s default, not the 900s configured here. | ||
| # Verified against the live v2 schema (2026-08-06), which defines `github-checks` with | ||
| # `enabled` and `timeout_ms` (max 900000). (#1083) | ||
| github-checks: | ||
| enabled: true | ||
| timeout_ms: 900000 | ||
|
Comment on lines
+98
to
105
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 Info: Key renames enable previously inert tools — behavioral side effects worth expecting Renaming Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.