From c8566dbda717aa16468f40270ef9a3a7d6f657ab Mon Sep 17 00:00:00 2001 From: Patrick Bassner Date: Sat, 9 Dec 2023 12:44:18 +0100 Subject: [PATCH] remove crgpt.yml --- .github/workflows/crgpt.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/crgpt.yml diff --git a/.github/workflows/crgpt.yml b/.github/workflows/crgpt.yml deleted file mode 100644 index c696189c6709..000000000000 --- a/.github/workflows/crgpt.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Code Review GPT - -on: - pull_request: - types: [opened, synchronize] - pull_request_target: - types: [ready_for_review] - -jobs: - run_code_review: - if: > - (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ready for review') && !github.event.pull_request.draft) || - github.event_name == 'pull_request_target' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Code Review GPT - uses: mattzcarey/code-review-gpt@v0.1.5 - with: - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - MODEL: 'gpt-3.5-turbo' - GITHUB_TOKEN: ${{ github.token }}