mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 06:54:13 +08:00
- Add dedicated issue deduplication workflow example - Add issue triage example (moved from .github/workflows) - Update all examples to use v1-dev branch consistently - Enable MCP tools in claude-auto-review.yml - Consolidate PR review examples into single comprehensive example Hero use cases now covered: 1. Code reviews (claude-auto-review.yml) 2. Issue triaging (issue-triage.yml) 3. Issue deduplication (issue-deduplication.yml) 4. Auto-fix CI failures (auto-fix-ci/auto-fix-ci.yml) All examples updated to follow v1-dev paradigm with proper prompt and claude_args configuration.
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
name: Claude Commit Analysis
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
analysis_type:
|
|
description: "Type of analysis to perform"
|
|
required: true
|
|
type: choice
|
|
options:
|
|
- summarize-commit
|
|
- security-review
|
|
default: "summarize-commit"
|
|
|
|
jobs:
|
|
analyze-commit:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2 # Need at least 2 commits to analyze the latest
|
|
|
|
- name: Run Claude Analysis
|
|
uses: anthropics/claude-code-action@v1-dev
|
|
with:
|
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
prompt: |
|
|
Analyze the latest commit in this repository.
|
|
|
|
${{ github.event.inputs.analysis_type == 'summarize-commit' && 'Task: Provide a clear, concise summary of what changed in the latest commit. Include the commit message, files changed, and the purpose of the changes.' || '' }}
|
|
|
|
${{ github.event.inputs.analysis_type == 'security-review' && 'Task: Review the latest commit for potential security vulnerabilities. Check for exposed secrets, insecure coding patterns, dependency vulnerabilities, or any other security concerns. Provide specific recommendations if issues are found.' || '' }}
|