From 4b18e241f707b3fffb4393f6f9a3547f6ccdd3d2 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Fri, 14 Aug 2026 21:29:34 +0100 Subject: [PATCH] ci: removed automatic Claude code review workflow Reviews are now on-request only, by mentioning @claude in a PR or issue comment (handled by claude.yml). The automatic pull_request-triggered review could never work for PyLops' fork-based flow anyway: GitHub gives fork PR jobs a read-only token, never sets ACTIONS_ID_TOKEN_REQUEST_URL so OIDC fails, and withholds repository secrets. The issue_comment trigger runs in the base-repo context, where both are available. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/claude-code-review.yml | 45 ------------------------ 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/claude-code-review.yml diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml deleted file mode 100644 index 37e66f3f..00000000 --- a/.github/workflows/claude-code-review.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Claude Code Review - -on: - pull_request: - types: [opened, synchronize, ready_for_review, reopened] - # Optional: Only run on specific file changes - # paths: - # - "src/**/*.ts" - # - "src/**/*.tsx" - # - "src/**/*.js" - # - "src/**/*.jsx" - -jobs: - claude-review: - # Optional: Filter by PR author - # if: | - # github.event.pull_request.user.login == 'external-contributor' || - # github.event.pull_request.user.login == 'new-developer' || - # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' - - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: read - issues: read - id-token: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Run Claude Code Review - id: claude-review - uses: anthropics/claude-code-action@v1 - with: - claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' - plugins: 'code-review@claude-code-plugins' - prompt: '/code-review:code-review --comment ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' - claude_args: '--allowedTools "mcp__github_inline_comment__create_inline_comment"' - # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md - # or https://code.claude.com/docs/en/cli-reference for available options -