From fd28662c8bf434111b9f0f52ed332d7c4dda578c Mon Sep 17 00:00:00 2001 From: UVCLimHun Date: Thu, 17 Apr 2025 10:15:44 +0900 Subject: [PATCH] codereview --- .github/workflows/code-review.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/code-review.yml diff --git a/.github/workflows/code-review.yml b/.github/workflows/code-review.yml new file mode 100644 index 0000000..b7b8123 --- /dev/null +++ b/.github/workflows/code-review.yml @@ -0,0 +1,22 @@ +name: Code Review + +on: + pull_request: + types: [opened, synchronize] + +jobs: + code_review: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-node@v3 + with: + node-version: 18 + + - run: npm install -g chatgpt-code-review + + - run: chatgpt-code-review + env: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} \ No newline at end of file