From 3c77777cb6b541a6e77717c8790f51823de65008 Mon Sep 17 00:00:00 2001 From: dvonthenen Date: Fri, 2 Feb 2024 14:05:57 -0800 Subject: [PATCH] Implements CodeRabbit Code Reviews --- .github/workflows/CodeReviews.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/CodeReviews.yml diff --git a/.github/workflows/CodeReviews.yml b/.github/workflows/CodeReviews.yml new file mode 100644 index 00000000..6b4414dd --- /dev/null +++ b/.github/workflows/CodeReviews.yml @@ -0,0 +1,30 @@ +name: Code Review + +permissions: + contents: read + pull-requests: write + +on: + pull_request: + pull_request_review_comment: + types: [created] + +concurrency: + group: + ${{ github.repository }}-${{ github.event.number || github.head_ref || + github.sha }}-${{ github.workflow }}-${{ github.event_name == + 'pull_request_review_comment' && 'pr_comment' || 'pr' }} + cancel-in-progress: ${{ github.event_name != 'pull_request_review_comment' }} + +jobs: + review: + runs-on: ubuntu-latest + steps: + - uses: coderabbitai/ai-pr-reviewer@latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + with: + debug: false + review_simple_changes: false + review_comment_lgtm: false