From 4b108fe823ad4d79cec22757d8c1e0666333f5e9 Mon Sep 17 00:00:00 2001 From: anpigon Date: Sun, 7 Jul 2024 19:16:34 +0900 Subject: [PATCH] Create code_review_from_chatgpt.yml --- .github/workflows/code_review_from_chatgpt.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/code_review_from_chatgpt.yml diff --git a/.github/workflows/code_review_from_chatgpt.yml b/.github/workflows/code_review_from_chatgpt.yml new file mode 100644 index 0000000..4f42d57 --- /dev/null +++ b/.github/workflows/code_review_from_chatgpt.yml @@ -0,0 +1,17 @@ +name: Code Review From ChatGPT +permissions: + contents: read + pull-requests: write +on: + pull_request: + types: [opened, synchronize] +jobs: + code-review: + runs-on: ubuntu-latest + steps: + - uses: anc95/ChatGPT-CodeReview@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + LANGUAGE: Korean + MODEL: gpt-4o