chore(deps): bump hkdf from 0.12.4 to 0.13.0 #313
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: Auto review PRs | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review] | |
| jobs: | |
| auto-review: | |
| if: github.event.pull_request.draft == false | |
| permissions: | |
| contents: read | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Auto review PR | |
| uses: anthropics/claude-code-action@v1 | |
| with: | |
| prompt: | | |
| Review this PR like an expert, critical L7 engineering lead. Optimize token usage, high signal to noise: | |
| - Code quality and best practices match repo | |
| - Potential bugs or issues | |
| - Performance | |
| - Security implications | |
| - Missing documentation | |
| Be constructive and specific in your feedback. Give inline comments where applicable. | |
| claude_args: | | |
| --allowedTools "mcp__github__add_pull_request_review_comment" | |
| claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} |