fix: close combobox on blur #2
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 Review | |
| on: | |
| pull_request: | |
| types: [opened, ready_for_review] | |
| pull_request_review_comment: | |
| types: [created] | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| review: | |
| # Auto-review zbeyens/felix PRs OR @claude mentions by zbeyens/felix | |
| if: | | |
| ( | |
| ( | |
| (github.event_name == 'pull_request') && | |
| (github.event.pull_request.draft == false) && | |
| (github.event.pull_request.user.login == 'zbeyens' || | |
| github.event.pull_request.user.login == 'felixfeng33') | |
| ) || | |
| ( | |
| ( | |
| (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || | |
| (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) | |
| ) && ( | |
| github.actor == 'zbeyens' || | |
| github.actor == 'felixfeng33' | |
| ) | |
| ) | |
| ) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Review PR | |
| uses: grll/claude-code-action@beta | |
| with: | |
| use_oauth: true | |
| claude_access_token: ${{ secrets.CLAUDE_ACCESS_TOKEN }} | |
| claude_refresh_token: ${{ secrets.CLAUDE_REFRESH_TOKEN }} | |
| claude_expires_at: ${{ secrets.CLAUDE_EXPIRES_AT }} | |
| timeout_minutes: '60' | |
| direct_prompt: | | |
| Please provide a thorough review of this pull request. | |
| Please pay extra attention to: | |
| - Adherence to project coding standards | |
| - Proper error handling | |
| - Security best practices (if applicable) | |
| - Unit test coverage (no integration/e2e tests) | |
| - Documentation | |
| - Changeset required when updating packages | |
| - Updating `docs/components/changelog.mdx` is required when updating `apps/www/src/registry` | |
| Provide detailed feedback and suggestions for improvement. | |
| Writing style: easy to read (average english user), and to the point. |