Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ Review and auto-fix workflows are the same `deslicer-code-harness` `@v1` reuseab

Add **Quality Gate**, **Secret Scanning (Lightweight)**, and **Cursor Code Review** as required status checks on `main` once they have run once.

## Variables

| Variable | Scope | Used by |
| --- | --- | --- |
| `CURSOR_MODEL` | Org Actions variable (`vars.CURSOR_MODEL`) | `cursor-code-review.yml`, `review-fix.yml` — Cursor agent model id; defaults to `auto` when unset |

## Secrets

Copy these from deslicer-ai / DAP (org inherit is enough if the org already shares them):
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cursor-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: github.event.pull_request.draft == false
uses: deslicer/deslicer-code-harness/.github/workflows/core_cursor_code_review.yml@v1
with:
model: gpt-5.3-codex
model: ${{ vars.CURSOR_MODEL || 'auto' }}
secrets:
cursor_api_key: ${{ secrets.CURSOR_API_KEY }}
openai_api_key: ${{ secrets.OPENAI_API_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/review-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contains(github.event.review.body, '@slicer-fix'))
uses: deslicer/deslicer-code-harness/.github/workflows/core_review_fix.yml@v1
with:
model: gpt-5.2
model: ${{ vars.CURSOR_MODEL || 'auto' }}
trigger_keyword: "@slicer-fix"
secrets:
cursor_api_key: ${{ secrets.CURSOR_API_KEY }}
Loading