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,433 changes: 0 additions & 3,433 deletions .codeboarding/analysis.json

This file was deleted.

104 changes: 0 additions & 104 deletions .codeboarding/fingerprint.json

This file was deleted.

39 changes: 0 additions & 39 deletions .codeboarding/health/health_report.json

This file was deleted.

Binary file removed .codeboarding/static_analysis.pkl
Binary file not shown.
2 changes: 0 additions & 2 deletions .codeboarding/static_analysis.sha

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/codeboarding-sync.yml

This file was deleted.

14 changes: 6 additions & 8 deletions .github/workflows/codeboarding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CodeBoarding review

on:
pull_request:
types: [opened, reopened, ready_for_review, closed, synchronize]
types: [opened, reopened, ready_for_review, synchronize]
issue_comment:
types: [created]

Expand All @@ -12,7 +12,7 @@ permissions: {}

concurrency:
group: codeboarding-${{ github.event.pull_request.number || github.event.issue.number }}
cancel-in-progress: ${{ github.event_name == 'pull_request' && github.event.action == 'closed' }}
cancel-in-progress: false

jobs:
review:
Expand All @@ -25,7 +25,7 @@ jobs:
id-token: write # mint a GitHub OIDC token for the free hosted tier (write is the only level for id-token)
actions: read # let a repeat review download the analysis an earlier run published, instead of re-deriving the whole PR
if: >
(github.event_name == 'pull_request' && github.event.action != 'closed' &&
(github.event_name == 'pull_request' &&
github.event.pull_request.draft == false &&
github.event.pull_request.head.repo.full_name == github.repository) ||
(github.event_name == 'issue_comment' && github.event.issue.pull_request != null &&
Expand All @@ -34,8 +34,6 @@ jobs:
steps:
- uses: CodeBoarding/CodeBoarding-action@v1
with:
# Free tier needs no secret; these fall through to the hosted OIDC tier when
# unset. Add either repo secret (Settings → Secrets and variables → Actions)
# for more/unmetered usage; no YAML edit required.
llm_api_key: ${{ secrets.OPENROUTER_API_KEY }} # BYO LLM provider key (OpenRouter)
license_key: ${{ secrets.CODEBOARDING_LICENSE }} # CodeBoarding paid plan
mode: review
llm: openrouter
openrouter_api_key: ${{ secrets.OPENROUTER_API_KEY }}
Loading