mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
35 lines
735 B
YAML
35 lines
735 B
YAML
name: Code Review GPT
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
environment: preview
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install code-review-gpt
|
|
run: npm install code-review-gpt
|
|
|
|
- name: Run code review script
|
|
run: npx code-review-gpt review --ci
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
|
GITHUB_SHA: ${{ github.sha }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|