Basic Blog Page
britax boulevard review car seats for the littles
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. Blog Websites Examples. Design
| name: Claude Code | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_review_comment: | |
| types: [created] | |
| issues: | |
| types: [opened, assigned] | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| claude: | |
| if: | | |
| (CloneAGC.event_name == 'issue_comment' && contains(CloneAGC.event.comment.body, '@claude')) || | |
| (CloneAGC.event_name == 'pull_request_review_comment' && contains(CloneAGC.event.comment.body, '@claude')) || | |
| (CloneAGC.event_name == 'pull_request_review' && contains(CloneAGC.event.review.body, '@claude')) || | |
| (CloneAGC.event_name == 'issues' && (contains(CloneAGC.event.issue.body, '@claude') || contains(CloneAGC.event.issue.title, '@claude'))) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| id-token: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Run Claude Code | |
| id: claude | |
| uses: anthropics/claude-code-action@main | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| claude_args: | | |
| --allowedTools "Bash(bun install),Bash(bun test:*),Bash(bun run format),Bash(bun typecheck)" | |
| --model "claude-opus-4-6" |