Skip to content

Commit

Permalink
New : Main 브랜치 PR시, ChatGPT가 코드리뷰를 해주도록함
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry committed Nov 4, 2023
1 parent edefd7a commit 62dd8a8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/Code-Review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ChatGPT Code Review

permissions:
contents: read
pull-requests: write

on:
pull_request:
types: [opened, reopened, synchronize]
branches: ["main"]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: anc95/ChatGPT-CodeReview@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPEN_AI_SECRET_KEY }}
LANGUAGE: Korean

0 comments on commit 62dd8a8

Please sign in to comment.