docs: record the V2 per-hop bound donation limitation as a known issue #130
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: '[claude] Claude Code Review' | ||
| concurrency: | ||
| group: ${{ github.workflow }}-pr-${{ github.event.pull_request.number }} | ||
| cancel-in-progress: true | ||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, ready_for_review, labeled, unlabeled] | ||
| jobs: | ||
| claude-review-auto: | ||
| if: | | ||
| github.event_name == 'pull_request' && | ||
| github.event.pull_request.head.repo.full_name == github.repository && | ||
| github.event.action != 'review_requested' && | ||
| !contains(github.head_ref, 'gh-readonly-queue/') && | ||
| !startsWith(github.head_ref, 'release/') && | ||
| ( | ||
| github.event.pull_request.draft == false || | ||
| github.event.action == 'ready_for_review' | ||
| ) | ||
| uses: Uniswap/ai-toolkit/.github/workflows/_claude-code-review.yml@96ef665ba04221de07e94fcc3ea69fe32c7cf306 | ||
| with: | ||
| pr_number: ${{ github.event.pull_request.number }} | ||
| base_ref: ${{ github.base_ref }} | ||
| force_review: false | ||
| toolkit_ref: 96ef665ba04221de07e94fcc3ea69fe32c7cf306 | ||
| custom_prompt_path: '.claude/prompts/claude-pr-review.md' | ||
|
Check failure on line 30 in .github/workflows/claude-code-review.yml
|
||
| model: 'claude-opus-4-6' | ||
| # Standard timeout for most PRs | ||
| timeout_minutes: 20 | ||
| secrets: | ||
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | ||