Skip to content

CSS @value syntax not compatible with Turbopack #19

CSS @value syntax not compatible with Turbopack

CSS @value syntax not compatible with Turbopack #19

Workflow file for this run

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: |
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@intern')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@intern')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@intern')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@intern') || contains(github.event.issue.title, '@intern')))
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
id-token: write
actions: read # Required for Claude to read CI results on PRs
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Run Claude Code
id: claude
uses: bitnimble/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
github_token: ${{ steps.app-token.outputs.token }}
trigger_phrase: "@intern"
claude_args: --max-turns 100 --model sonnet --allowedTools "Bash(yarn:*)"