プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

update Claude workflow and settings

Kohei Watanabe (Feb 27, 2026, 4:34 PM +0900) 433983dc cb880e86

+3 -30
+3 -30
.github/workflows/claude.yml
··· 23 23 pull-requests: read 24 24 issues: read 25 25 id-token: write 26 - actions: read # Required for Claude to read CI results on PRs 26 + actions: read 27 27 steps: 28 28 - name: Checkout repository 29 - uses: actions/checkout@v4 29 + uses: actions/checkout@v6 30 30 with: 31 31 fetch-depth: 1 32 32 33 33 - name: Run Claude Code 34 34 id: claude 35 - uses: anthropics/claude-code-action@beta 35 + uses: anthropics/claude-code-action@v1 36 36 with: 37 37 claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} 38 - 39 - # This is an optional setting that allows Claude to read CI results on PRs 40 - additional_permissions: | 41 - actions: read 42 - 43 - # Optional: Specify model (defaults to Claude Sonnet 4, uncomment for Claude Opus 4) 44 - # model: "claude-opus-4-20250514" 45 - 46 - # Optional: Customize the trigger phrase (default: @claude) 47 - # trigger_phrase: "/claude" 48 - 49 - # Optional: Trigger when specific user is assigned to an issue 50 - # assignee_trigger: "claude-bot" 51 - 52 - # Optional: Allow Claude to run specific commands 53 - # allowed_tools: "Bash(npm install),Bash(npm run build),Bash(npm run test:*),Bash(npm run lint:*)" 54 - 55 - # Optional: Add custom instructions for Claude to customize its behavior for your project 56 - # custom_instructions: | 57 - # Follow our coding standards 58 - # Ensure all new code has tests 59 - # Use TypeScript for new files 60 - 61 - # Optional: Custom environment variables for Claude 62 - # claude_env: | 63 - # NODE_ENV: test 64 -