From 11c0c35eb2ad7f229790db83acba3196dc3d3e82 Mon Sep 17 00:00:00 2001 From: Anton Shepilov Date: Sun, 30 Apr 2023 14:03:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Add=20chatgpt=20codereview=20to?= =?UTF-8?q?=20PRs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/codeball.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/codeball.yml diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml new file mode 100644 index 00000000..8fb735a1 --- /dev/null +++ b/.github/workflows/codeball.yml @@ -0,0 +1,20 @@ +name: Codeball +on: + pull_request: {} + pull_request_review_comment: + types: [created, edited] + +jobs: + codeball_job: + runs-on: ubuntu-latest + name: Codeball + steps: + # Run Codeball on all new Pull Requests and Review Comments! 🚀 + # For customizations and more documentation, see https://github.com/sturdy-dev/codeball-action + - name: Codeball + uses: sturdy-dev/codeball-action@v2 + with: + approvePullRequests: "true" + labelPullRequestsWhenApproved: "true" + labelPullRequestsWhenReviewNeeded: "false" + failJobsWhenReviewNeeded: "false"