From 2f24e97e6ebec52018fb65347894e0eda054b8db Mon Sep 17 00:00:00 2001 From: rguichard Date: Fri, 10 Jul 2026 11:31:09 +0200 Subject: [PATCH] ci(review): allow morpho-infra-deployer bot in Claude review The chart image-tag bump PRs are opened by the morpho-infra-deployer GitHub App. The Claude review action rejects non-human actors unless they are in allowed_bots, so it fails on those PRs with 'Workflow initiated by non-human actor'. Add the bot to allowed_bots. --- .github/workflows/claude-code-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index c1faea251..820c50bdd 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -62,7 +62,7 @@ jobs: uses: anthropics/claude-code-action@2cc1ac1331eac7a6a96d716dd204dd2888d0fcd2 # v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - allowed_bots: 'prd-carapulse,github-actions' + allowed_bots: 'prd-carapulse,github-actions,morpho-infra-deployer' claude_args: "--model claude-opus-4-6" plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' plugins: 'code-review@claude-code-plugins'