From c494e0cfe55b89555c57e68e44cc45b0439198e8 Mon Sep 17 00:00:00 2001 From: Daichi Narushima <1938249+dceoy@users.noreply.github.com> Date: Thu, 20 Aug 2026 02:46:55 +0900 Subject: [PATCH 1/3] exclude bot PRs from Claude review --- .github/workflows/claude.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index e028d38..84b12a4 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -27,8 +27,7 @@ jobs: if: > github.event_name == 'pull_request' && (! github.event.pull_request.draft) - && (! startsWith(github.head_ref, 'dependabot/')) - && (! startsWith(github.head_ref, 'renovate/')) + && github.event.pull_request.user.type != 'Bot' permissions: contents: read pull-requests: write From b954f7a9ffe56aac1662f56a6537f1349eff1e8d Mon Sep 17 00:00:00 2001 From: Daichi Narushima <1938249+dceoy@users.noreply.github.com> Date: Thu, 20 Aug 2026 02:51:47 +0900 Subject: [PATCH 2/3] Exclude bot PRs from OpenCode review --- .github/workflows/opencode-review.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/opencode-review.yml b/.github/workflows/opencode-review.yml index 629dd60..3eefbff 100644 --- a/.github/workflows/opencode-review.yml +++ b/.github/workflows/opencode-review.yml @@ -118,8 +118,7 @@ jobs: || ( contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.pull_request.author_association) && (! github.event.pull_request.draft) - && (! startsWith(github.head_ref, 'dependabot/')) - && (! startsWith(github.head_ref, 'renovate/')) + && github.event.pull_request.user.type != 'Bot' ) ) runs-on: ${{ inputs.runs-on || 'ubuntu-latest' }} From 893fd43a68e2ecf9d164576263ffd181bc029724 Mon Sep 17 00:00:00 2001 From: Daichi Narushima <1938249+dceoy@users.noreply.github.com> Date: Thu, 20 Aug 2026 02:52:03 +0900 Subject: [PATCH 3/3] Exclude bot comments from OpenCode bot --- .github/workflows/opencode-bot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/opencode-bot.yml b/.github/workflows/opencode-bot.yml index ad84a60..8cd83e9 100644 --- a/.github/workflows/opencode-bot.yml +++ b/.github/workflows/opencode-bot.yml @@ -116,6 +116,7 @@ jobs: if: > ( (github.event_name == 'issue_comment' || github.event_name == 'pull_request_review_comment') + && github.event.comment.user.type != 'Bot' && contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association) && ( inputs.model != ''