Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

docs: add Copilot + @claude agent configuration #4

docs: add Copilot + @claude agent configuration

docs: add Copilot + @claude agent configuration #4

Workflow file for this run

name: Claude Code
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
pull_request:
types: [opened, synchronize]
jobs:
claude:
if: |
(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' && github.event.pull_request.user.login == 'copilot-swe-agent[bot]')
runs-on: ubuntu-latest
steps:
- uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
claude_args: "--model claude-sonnet-4-6 --max-turns 10"