We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ade3b commit 8c3b9aaCopy full SHA for 8c3b9aa
.github/workflows/ci-pr.yml
@@ -22,18 +22,16 @@ env:
22
# Jobs to be executed
23
jobs:
24
# GPT-4 code review
25
- review_with_gpt:
+ review:
26
runs-on: ubuntu-latest
27
- name: ChatGPT code reviewer
28
- permissions:
29
- pull-requests: write
30
steps:
31
- - name: ChatGTP code reviewer code
32
- uses: mattzcarey/code-review-gpt@v0.1.4-alpha
33
- with:
+ - uses: fluxninja/openai-pr-reviewer@latest
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
35
- MODEL: 'gpt-3.5-turbo'
36
- GITHUB_TOKEN: ${{ github.token }}
+ with:
+ debug: false
+ review_comment_lgtm: false
37
38
# Formatting only runs on human-submitted and Dependabot PRs
39
format-and-linting:
0 commit comments