From 43a1c9ef671170ccd78c20bc6d4ab697038a8380 Mon Sep 17 00:00:00 2001 From: Jason Song Date: Sat, 27 May 2023 20:48:07 +0800 Subject: [PATCH] add cr bot --- .github/workflows/code-review.yml | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 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 00000000000..ec08b9c8224 --- /dev/null +++ b/.github/workflows/code-review.yml @@ -0,0 +1,36 @@ +# +# Copyright 2023 Apollo Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +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 }}