From caa6e7599d895d8431e36162c05ed8a916594913 Mon Sep 17 00:00:00 2001 From: smagles Date: Mon, 16 Jun 2025 20:45:42 +0200 Subject: [PATCH 1/2] ci: integrate CodeRabbit GitHub Action --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 120d1bd..ac5f7fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,9 @@ name: Code Review & Build on: pull_request: - branches: [ main ] + branches: [ master ] push: - branches: [ main ] + branches: [ master ] permissions: contents: read From 76387b92591aa4060d1c605b6531de2838f8a8f6 Mon Sep 17 00:00:00 2001 From: smagles Date: Mon, 16 Jun 2025 20:50:37 +0200 Subject: [PATCH 2/2] ci: integrate CodeRabbit GitHub Action --- .github/workflows/ci.yml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac5f7fb..eeae6bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,10 @@ name: Code Review & Build + on: - pull_request: - branches: [ master ] push: branches: [ master ] + pull_request: + branches: [ master ] permissions: contents: read @@ -11,7 +12,6 @@ permissions: jobs: build: - name: Build with Gradle runs-on: ubuntu-latest steps: @@ -28,15 +28,5 @@ jobs: - name: Make Gradle wrapper executable run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew build - - notify-review: - name: Notify Code Review - runs-on: ubuntu-latest - needs: build - if: github.event_name == 'pull_request' - - steps: - - name: Review initialized - run: echo "Code review will be handled by CodeRabbit AI GitHub App." + - name: Build without tests + run: ./gradlew build -x test