Skip to content

build(deps): bump anthropics/claude-code-action from 1.0.135 to 1.0.136 #1097

build(deps): bump anthropics/claude-code-action from 1.0.135 to 1.0.136

build(deps): bump anthropics/claude-code-action from 1.0.135 to 1.0.136 #1097

name: Claude Code Review
# For deepset-ai org members: runs automatically on every PR
# For external contributors: runs when a maintainer adds the 'claude-review' label
on:
pull_request:
types: [opened, synchronize, ready_for_review, reopened]
pull_request_target:
types: [labeled]
permissions:
contents: read
jobs:
claude-review:
if: |
(
github.event_name == 'pull_request' &&
!github.event.pull_request.head.repo.fork
) || (
github.event_name == 'pull_request_target' &&
github.event.label.name == 'claude-review'
)
runs-on: ubuntu-slim
continue-on-error: true
permissions:
contents: read
pull-requests: write
issues: read
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 1
- name: Run Claude Code Review
id: claude-review
uses: anthropics/claude-code-action@0b1b62002952733671bde978d429b50b51c51c85 # v1.0.136
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_PR_REVIEWS_PUBLIC_REPOS }}
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 }}'