Bump bubkoo/auto-assign from 1 to 3 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Review GPT | |
on: | |
pull_request: | |
branches: [15.0] | |
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 }} |