codereview

This commit is contained in:
2025-04-17 10:15:44 +09:00
parent c2b88e5157
commit fd28662c8b

22
.github/workflows/code-review.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Code Review
on:
pull_request:
types: [opened, synchronize]
jobs:
code_review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install -g chatgpt-code-review
- run: chatgpt-code-review
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}