mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-22 22:44:13 +08:00
- Add manual trigger support for GitHub Actions UI - Include cloudflare_tunnel_token and direct_prompt inputs - Set agent mode for workflow_dispatch events - Enable manual execution of Claude Code action
54 lines
2.0 KiB
YAML
54 lines
2.0 KiB
YAML
name: Claude Code
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
pull_request_review_comment:
|
|
types: [created]
|
|
issues:
|
|
types: [opened, assigned]
|
|
pull_request_review:
|
|
types: [submitted]
|
|
workflow_dispatch:
|
|
inputs:
|
|
cloudflare_tunnel_token:
|
|
description: 'Cloudflare tunnel token to expose Claude UI via browser'
|
|
required: false
|
|
type: string
|
|
direct_prompt:
|
|
description: 'Direct instruction for Claude'
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
claude:
|
|
if: |
|
|
github.event_name == 'workflow_dispatch' ||
|
|
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
|
|
(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.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
issues: read
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Run Claude Code
|
|
id: claude
|
|
uses: anthropics/claude-code-action@beta
|
|
with:
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
allowed_tools: "Bash(bun install),Bash(bun test:*),Bash(bun run format),Bash(bun typecheck)"
|
|
custom_instructions: "You have also been granted tools for editing files and running bun commands (install, run, test, typecheck) for testing your changes: bun install, bun test, bun run format, bun typecheck."
|
|
model: "claude-opus-4-1-20250805"
|
|
cloudflare_tunnel_token: ${{ github.event.inputs.cloudflare_tunnel_token }}
|
|
direct_prompt: ${{ github.event.inputs.direct_prompt }}
|
|
mode: ${{ github.event_name == 'workflow_dispatch' && 'agent' || 'tag' }}
|