Skip to content

Commit a744755

Browse files
authored
Merge branch 'master' into Add-error-codes-and-response-errors
2 parents 68f577a + 44aea49 commit a744755

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

.github/workflows/main.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,24 @@ jobs:
3535
with:
3636
github-token: ${{ secrets.GITHUB_TOKEN }}
3737

38+
Review:
39+
needs: Test
40+
runs-on: ubuntu-latest
41+
steps:
42+
- name: Checkout Repo
43+
uses: actions/checkout@v4
44+
45+
- name: AI Code Reviewer
46+
uses: freeedcom/ai-codereviewer@a9a064dfa1db8c83f40ef63f6e247fa09c935ed6
47+
with:
48+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
50+
OPENAI_API_MODEL: "gpt-4" # Optional: defaults to "gpt-4"
51+
exclude: "**/*.json, **/*.md" # Optional: exclude patterns separated by commas
52+
3853
Release:
39-
if: github.ref == 'refs/heads/master' && startsWith(github.repository, 'neo-project/')
4054
needs: Test
55+
if: github.ref == 'refs/heads/master' && startsWith(github.repository, 'neo-project/')
4156
runs-on: ubuntu-latest
4257
steps:
4358
- name: Checkout

0 commit comments

Comments
 (0)