Files
ai-code-review/.gitea/ workflows/ci.yaml
T
jiantw83 65f27f544b Refactor LLM verification and update dependencies
- Removed OpenAI and related dependencies from package.json and package-lock.json.
- Simplified LLM verification logic to focus on OpenCode server.
- Updated tests to reflect changes in LLM provider handling.
- Added CI and CD workflows for automated processes in Gitea.
2026-06-25 10:17:08 +00:00

18 lines
386 B
YAML

name: CI
on:
pull_request:
branches-ignore:
- master
types: [opened, synchronize]
permissions:
contents: write
pull-requests: write
issues: write
jobs:
ai-code-review:
name: Code Review
runs-on: ubuntu
steps:
- name: Code Review
uses: https://gitea.jsc.idv.tw/composite-actions/opencode-code-review@${{ vars.ACTION_AI_CODE_REVIEW_VERSION }}