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
3 changes: 3 additions & 0 deletions .cora.yaml
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,3 +21,6 @@ ignore:
- "*.lock"
- "vendor/"
- "node_modules/"

llm:
max_tokens: 16384
12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_2e1c0a9_7d4499250c16b5fa.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_42f996e_b779b0deb582ae64.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_59a82f3_a4268fd072a3e331.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_9bdbe82_837357f4ff2d20d0.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_bcc9e97_f4878bf31645aee2.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_c385f05_cd6d6fd06187377a.json

This file was deleted.

12 changes: 0 additions & 12 deletions .cora/history/2026-08-26_f8d934c_737627a575ca69aa.json

This file was deleted.

11 changes: 8 additions & 3 deletions .github/workflows/cla-check.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -12,7 +12,12 @@ permissions:
jobs:
cla-check:
runs-on: ubuntu-latest
if: "!contains(fromJSON('[\"app/dependabot\", \"app/renovate\", \"github-actions[bot]\"]'), github.event.pull_request.user.login)"
# Bot PRs are exempt from the CLA — exact allowlist only (a `[bot]`
# substring match would exempt any third-party GitHub App and turn the
# CLA gate into an opt-out). `user.login` for app-authored PRs is the
# bot account (e.g. `dependabot[bot]`); `app/dependabot` / `app/renovate`
# are kept as legacy fallbacks.
if: "!contains(fromJSON('[\"dependabot[bot]\", \"renovate[bot]\", \"github-actions[bot]\", \"app/dependabot\", \"app/renovate\"]'), github.event.pull_request.user.login)"
steps:
- name: Fetch & check CLA signature
id: check
Expand DownExpand Up@@ -48,7 +53,7 @@ jobs:

- name: Comment on PR (unsigned only)
if: steps.check.outputs.signed != 'true'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const author = '${{ github.event.pull_request.user.login }}';
Expand DownExpand Up@@ -97,7 +102,7 @@ jobs:
}

- name: Set commit status
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const signed = '${{ steps.check.outputs.signed }}' === 'true';
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/cora-review.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
name: Cora AI Code Review

on:
pull_request:
branches: [develop, main]
types: [opened, synchronize, ready_for_review, reopened]

concurrency:
group: cora-review-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
pull-requests: write
security-events: write

jobs:
cora-review:
name: Cora Review
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout PR head
uses: actions/checkout@v7
with:
fetch-depth: 0
persist-credentials: false

- name: Run Cora AI Code Review
uses: codecoradev/cora-review-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
cora-api-key: ${{ secrets.CORA_API_KEY }}
cora-base-url: ${{ secrets.CORA_BASE_URL }}
cora-model: ${{ secrets.CORA_MODEL }}
1 change: 1 addition & 0 deletions .gitignore
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
target/
Cargo.lock.bak
.cora/
112 changes: 40 additions & 72 deletions Cargo.lock

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

Loading