[drawer] Ignore swipes without an attributed direction when using snap points #2184
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
| # Thin caller stub for the shared Claude PR review workflow in mui/mui-public. A | |
| # maintainer comments "@claude review" on a PR; the reusable workflow gates on team | |
| # membership, then reviews the diff and posts a comment. All the logic (and its | |
| # security model) lives in the called workflow; here we only wire up the trigger and | |
| # pass base-ui's own local review skill. See mui/mui-public/.github/workflows/claude-review.yml. | |
| name: Claude review | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| permissions: {} | |
| jobs: | |
| claude-review: | |
| uses: mui/mui-public/.github/workflows/claude-review.yml@d934a6de99c7a164f090dc7935206f903f66a066 # master | |
| permissions: | |
| contents: read # read the repo (checkout + git diff) | |
| id-token: write # mint the GitHub OIDC token exchanged for a Claude token via WIF | |
| pull-requests: write # the reusable workflow posts the review comment (commenting on a PR needs pull-requests: write) | |
| with: | |
| review-skill: base-ui-review |