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
5 changes: 4 additions & 1 deletion .github/workflows/codegenie-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
CODEGENIE_REPORT_PATH: ${{ runner.temp }}/codegenie-report.md
CODEGENIE_FAILURE_PATH: ${{ runner.temp }}/codegenie-failure.json
# Bootstrap guard: the trusted-base checkout builds the BASE branch's
# codegenie, so a PR whose base predates the github-action adapter
# cannot run it — skip cleanly instead of failing. Once the adapter is
Expand All @@ -79,5 +80,7 @@ jobs:
uses: actions/upload-artifact@v7
with:
name: codegenie-report
path: ${{ runner.temp }}/codegenie-report.md
path: |
${{ runner.temp }}/codegenie-report.md
${{ runner.temp }}/codegenie-failure.json
if-no-files-found: ignore
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.base.sha }} # trusted base; PR head is fetched as review data
fetch-depth: 0
- uses: 0xPolygon/codegenie@v0.5.4
- uses: 0xPolygon/codegenie@v0.5.5
with:
model: "anthropic/claude-opus-5:high"
llm-api-key: ${{ secrets.LLM_API_KEY }}
Expand Down
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ runs:
env:
GH_TOKEN: ${{ inputs.github-token }}
CODEGENIE_REPORT_PATH: ${{ runner.temp }}/codegenie-report.md
CODEGENIE_FAILURE_PATH: ${{ runner.temp }}/codegenie-failure.json
INPUT_TRIGGER_PHRASE: ${{ inputs.trigger-phrase }}
INPUT_ON_PULL_REQUEST: ${{ inputs.on-pull-request }}
INPUT_ALLOWED_ASSOCIATIONS: ${{ inputs.allowed-associations }}
Expand Down Expand Up @@ -117,5 +118,7 @@ runs:
uses: actions/upload-artifact@v7
with:
name: codegenie-report
path: ${{ runner.temp }}/codegenie-report.md
path: |
${{ runner.temp }}/codegenie-report.md
${{ runner.temp }}/codegenie-failure.json
if-no-files-found: ignore
2 changes: 1 addition & 1 deletion examples/workflows/codegenie-review-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
fetch-depth: 0

- uses: 0xPolygon/codegenie@v0.5.4
- uses: 0xPolygon/codegenie@v0.5.5
with:
model: "anthropic/claude-opus-5:high"
llm-api-key: ${{ secrets.LLM_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion examples/workflows/codegenie-review-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 0

- uses: 0xPolygon/codegenie@v0.5.4
- uses: 0xPolygon/codegenie@v0.5.5
with:
model: "anthropic/claude-opus-5:high"
llm-api-key: ${{ secrets.LLM_API_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/codegenie",
"version": "0.5.4",
"version": "0.5.5",
"description": "High-signal AI code review agent",
"type": "module",
"bin": {
Expand Down Expand Up @@ -46,7 +46,7 @@
"tree-sitter-rust": "0.24.0",
"tree-sitter-solidity": "1.2.13",
"tree-sitter-typescript": "0.23.2",
"tsx": "4.23.1",
"tsx": "4.23.4",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
Expand Down
26 changes: 13 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading