git-ai-review 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/review.js +2 -2
- package/package.json +1 -1
package/dist/review.js
CHANGED
|
@@ -449,11 +449,11 @@ export function evaluateResults(claude, codex, copilot) {
|
|
|
449
449
|
}
|
|
450
450
|
const withFindings = [];
|
|
451
451
|
for (const [name, runner] of runners) {
|
|
452
|
-
if (runner.available && runner.result.findings.
|
|
452
|
+
if (runner.available && runner.result.findings.some(f => f.severity !== 'info'))
|
|
453
453
|
withFindings.push(name);
|
|
454
454
|
}
|
|
455
455
|
if (withFindings.length > 0) {
|
|
456
|
-
return { pass: false, reason: `AI review has unresolved findings from: ${withFindings.join(', ')}. Pass requires zero findings.` };
|
|
456
|
+
return { pass: false, reason: `AI review has unresolved findings from: ${withFindings.join(', ')}. Pass requires zero non-info findings.` };
|
|
457
457
|
}
|
|
458
458
|
const passed = [];
|
|
459
459
|
for (const [name, runner] of runners) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-ai-review",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Review your git diff with local Codex CLI, Copilot CLI, or Claude CLI — run manually in one command or automatically as a git hook",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|