This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sdi/.github/workflows/code-review.yml
2025-04-17 16:40:15 +09:00

21 lines
581 B
YAML

name: Code Review
on:
issue_comment:
types: [created, edited]
pull_request:
types: [opened, reopened, synchronize]
jobs:
code-review:
runs-on: self_hosted
steps:
- name: OpenAI Code Review
uses: ingress-it-solutions/gitea-code-review-action@v1.13
with:
PROGRAMMING_LANGUAGE: 'c#'
OPENAI_TOKEN: ${{ secrets.OPENAI_API_KEY }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_BASE_URL: 'http://220.90.135.190:3000'
FULL_REVIEW_COMMENT: 'openai'
REVIEW_COMMENT_PREFIX: 'openai:'
SOURCE_AT: 'gitea'