From b788c03ad63838460d62c10dad6e55783ef50b6a Mon Sep 17 00:00:00 2001 From: Kros Dai Date: Mon, 30 Mar 2026 14:08:30 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20add=20code=20review=20w?= =?UTF-8?q?orkflow=20caller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-review.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000..0f1a9f9 --- /dev/null +++ b/.github/workflows/code-review.yml @@ -0,0 +1,22 @@ +name: Code Review + +on: + pull_request: + types: [opened, ready_for_review, reopened, synchronize] + +permissions: + actions: read + contents: read + id-token: write + issues: write + pull-requests: write + +jobs: + code-review: + if: >- + github.event.pull_request && + !github.event.pull_request.draft && + github.event.pull_request.head.repo.full_name == github.repository + uses: taptap/.github/.github/workflows/code-review.yml@main + secrets: + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}