From 0c2b11651950318a58360e187941d0179cbd2e80 Mon Sep 17 00:00:00 2001 From: guesung Date: Fri, 9 Aug 2024 13:05:57 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20chatgpt=20code=20reiv?= =?UTF-8?q?ew=20bot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/anc95/ChatGPT-CodeReview --- .github/workflows/cr.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/cr.yml diff --git a/.github/workflows/cr.yml b/.github/workflows/cr.yml new file mode 100644 index 0000000..22b7cf5 --- /dev/null +++ b/.github/workflows/cr.yml @@ -0,0 +1,19 @@ +name: Code Review + +permissions: + contents: read + pull-requests: write + +on: + pull_request: + types: [opened, reopened, synchronize] + +jobs: + test: + 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 \ No newline at end of file