fix(mysql): align JSON representation between snapshot and CDC #788
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 Code Review for dependencies updates | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review, reopened] | |
| jobs: | |
| claude-review: | |
| if: | | |
| !github.event.pull_request.draft && | |
| github.event.pull_request.user.login == 'renovate[bot]' && | |
| (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: read | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Run Claude Code Review | |
| id: claude-review | |
| uses: anthropics/claude-code-action@a92e7c70a4da9793dc164451d829089dc057a464 # v1 | |
| with: | |
| allowed_bots: 'renovate' | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| claude_args: | | |
| --model claude-opus-4-6 | |
| --allowed-tools "Bash(gh:*),Bash(git fetch:*),Bash(git log:*),Bash(git diff:*),Bash(git show:*),WebFetch,WebSearch" | |
| prompt: | | |
| Review PR ${{ github.repository }}#${{ github.event.pull_request.number }}. | |
| You MUST FOLLOW the instructions at `.claude/REVIEW.md` always respecting the principles | |
| listed at `.claude/CLAUDE.md`. | |
| If findings exist, post them as inline comments via mcp__github_inline_comment__create_inline_comment. | |
| If none, post one summary comment via `gh pr comment` saying the bump was reviewed and looks clean, | |
| so reviewers know the workflow actually ran. | |
| - name: Print Claude execution output | |
| if: always() | |
| run: cat /home/runner/work/_temp/claude-execution-output.json || echo "No execution output found" |