⚡ Optimize combine.py: Move chardet import to top level #67
Workflow file for this run
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 PR Review | |
| on: | |
| pull_request: {types: [opened, synchronize, reopened, ready_for_review]} | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| id-token: write | |
| actions: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: {fetch-depth: 0} | |
| - uses: anthropics/claude-code-action@v1 | |
| with: | |
| claude_code_oauth_token: ${{secrets.CLAUDE_CODE_OAUTH_TOKEN}} | |
| anthropic_api_key: ${{secrets.ANTHROPIC_API_KEY}} | |
| prompt: | | |
| Review PR#${{github.event.pull_request.number}} in ${{github.repository}}. | |
| Review: code quality, bugs, performance, security. | |
| Use CLAUDE.md for style. Comment via `gh pr comment`. | |
| claude_args: | | |
| --allowed-tools "mcp__github__get_pull_request_diff,mcp__github__create_pending_pull_request_review,mcp__github__add_comment_to_pending_review,mcp__github__submit_pending_pull_request_review,Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*)" |