mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-09-04 23:12:02 +08:00
- actions/checkout: v3/master -> v7 - pnpm/action-setup: v2 -> v5 (兼容 pnpm v10,v6 需 v11+) - easingthemes/ssh-deploy: main -> v6 - JamesIves/github-pages-deploy-action: v4.3.3 -> v4.9.0 - softprops/action-gh-release: v1 -> v3 (token 改用 with) - Yikun/hub-mirror-action: master -> v1.5 - anc95/ChatGPT-CodeReview: main -> v1
26 lines
465 B
YAML
26 lines
465 B
YAML
name: Code Review
|
|
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: anc95/ChatGPT-CodeReview@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
# Optional
|
|
LANGUAGE: Chinese
|
|
MODEL: gpt-3.5-turbo
|
|
top_p: 1
|
|
temperature: 1 |