Fixed review?
Some checks failed
Code review / review (pull_request) Failing after 19s
Build and publish / Build Container (push) Successful in 47s

This commit is contained in:
2025-12-27 20:56:11 -05:00
parent bee0029469
commit f00906045a
3 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ jobs:
- name: Run AI Review
run: |
docker pull "git.zakscode.com/ztimson/ai-reviewer:test"
docker run --rm -v $(pwd):/app \
docker run --rm -v /github/workspace:/app \
-e AI_HOST=anthropic \
-e AI_MODEL=claude-sonnet-4-5 \
-e AI_TOKEN="${{ secrets.ANTHROPIC_TOKEN }}" \

View File

@@ -75,7 +75,7 @@ jobs:
- name: Run AI Review
run: |
docker pull "git.zakscode.com/ztimson/ai-reviewer:test"
docker run --rm -v $(pwd):/app \
docker run --rm -v /github/workspace:/app \
-e AI_HOST=anthropic \
-e AI_MODEL=claude-sonnet-4-5 \
-e AI_TOKEN="${{ secrets.ANTHROPIC_TOKEN }}" \

View File

@@ -5,8 +5,8 @@ import * as path from 'node:path';
import * as fs from 'node:fs';
import * as dotenv from 'dotenv';
dotenv.config();
dotenv.config({path: '.env.local', override: true});
dotenv.config({debug: false});
dotenv.config({path: '.env.local', override: true, debug: false});
(async () => {
const root = process.argv[2] || process.cwd(),