diff --git a/.github/workflows/qualops.yml b/.github/workflows/qualops.yml index 3247e57..5851468 100644 --- a/.github/workflows/qualops.yml +++ b/.github/workflows/qualops.yml @@ -13,11 +13,11 @@ jobs: review: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - - uses: eggai-tech/qualops@v0.2.1 + - uses: eggai-tech/qualops@stable with: anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }} github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.qualops/.qualopsrc.json b/.qualops/.qualopsrc.json index 844c2ff..04ff103 100644 --- a/.qualops/.qualopsrc.json +++ b/.qualops/.qualopsrc.json @@ -1,15 +1,26 @@ { "ai": { "reviewStage": { + "model": "claude-sonnet-4-6", "provider": "anthropic", - "model": "claude-sonnet-4-20250514" + "inputPerMillion": 15, + "outputPerMillion": 75 } }, "review": { - "minConfidence": 4 + "minConfidence": 4, + "pipeline": [ + { + "name": "General review", + "enabled": true, + "mode": "agentic", + "passes": [] + } + ] }, "github": { "postComments": true, "maxInlineComments": 50 } } +