mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 23:14:13 +08:00
Compare commits
8 Commits
ashwin/v1-
...
test-no-ap
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c533aaff5 | ||
|
|
8102aebe6d | ||
|
|
57cb0d9828 | ||
|
|
44dd9dd8a8 | ||
|
|
8052d271ce | ||
|
|
b61185b14c | ||
|
|
808408602d | ||
|
|
c03f13d243 |
@@ -18,9 +18,9 @@ jobs:
|
|||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Auto review PR
|
- name: Auto review PR
|
||||||
uses: anthropics/claude-code-action@main
|
uses: anthropics/claude-code-action@v1-dev
|
||||||
with:
|
with:
|
||||||
direct_prompt: |
|
prompt: |
|
||||||
Please review this PR. Look at the changes and provide thoughtful feedback on:
|
Please review this PR. Look at the changes and provide thoughtful feedback on:
|
||||||
- Code quality and best practices
|
- Code quality and best practices
|
||||||
- Potential bugs or issues
|
- Potential bugs or issues
|
||||||
@@ -30,4 +30,4 @@ jobs:
|
|||||||
|
|
||||||
Be constructive and specific in your feedback. Give inline comments where applicable.
|
Be constructive and specific in your feedback. Give inline comments where applicable.
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
allowed_tools: "mcp__github__create_pending_pull_request_review,mcp__github__add_comment_to_pending_review,mcp__github__submit_pending_pull_request_review,mcp__github__get_pull_request_diff"
|
claude_args: "--allowedTools mcp__github-comment-server__create_pending_pull_request_review,mcp__github-comment-server__add_comment_to_pending_review,mcp__github-comment-server__submit_pending_pull_request_review,mcp__github-comment-server__get_pull_request_diff"
|
||||||
@@ -1,6 +1,6 @@
|
|||||||

|

|
||||||
|
|
||||||
# Claude Code Action
|
# Claude Code Action - No Approval Test
|
||||||
|
|
||||||
A general-purpose [Claude Code](https://claude.ai/code) action for GitHub PRs and issues that can answer questions and implement code changes. This action listens for a trigger phrase in comments and activates Claude act on the request. It supports multiple authentication methods including Anthropic direct API, Amazon Bedrock, and Google Vertex AI.
|
A general-purpose [Claude Code](https://claude.ai/code) action for GitHub PRs and issues that can answer questions and implement code changes. This action listens for a trigger phrase in comments and activates Claude act on the request. It supports multiple authentication methods including Anthropic direct API, Amazon Bedrock, and Google Vertex AI.
|
||||||
|
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ runs:
|
|||||||
echo "Base-action dependencies installed"
|
echo "Base-action dependencies installed"
|
||||||
cd -
|
cd -
|
||||||
# Install Claude Code globally
|
# Install Claude Code globally
|
||||||
bun install -g @anthropic-ai/claude-code@1.0.73
|
bun install -g @anthropic-ai/claude-code@1.0.72
|
||||||
|
|
||||||
- name: Setup Network Restrictions
|
- name: Setup Network Restrictions
|
||||||
if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != ''
|
if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != ''
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ runs:
|
|||||||
|
|
||||||
- name: Install Claude Code
|
- name: Install Claude Code
|
||||||
shell: bash
|
shell: bash
|
||||||
run: bun install -g @anthropic-ai/claude-code@1.0.73
|
run: bun install -g @anthropic-ai/claude-code@1.0.72
|
||||||
|
|
||||||
- name: Run Claude Code Action
|
- name: Run Claude Code Action
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ async function run() {
|
|||||||
mode,
|
mode,
|
||||||
githubToken,
|
githubToken,
|
||||||
});
|
});
|
||||||
|
core.setOutput("GITHUB_TOKEN", githubToken);
|
||||||
|
|
||||||
// MCP config is handled by individual modes (tag/agent) and included in their claude_args output
|
// MCP config is handled by individual modes (tag/agent) and included in their claude_args output
|
||||||
|
|
||||||
|
|||||||
@@ -39,8 +39,10 @@ export const agentMode: Mode = {
|
|||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
async prepare({ context }: ModeOptions): Promise<ModeResult> {
|
async prepare({ context, githubToken }: ModeOptions): Promise<ModeResult> {
|
||||||
// Agent mode handles automation events and any event with explicit prompts
|
// Agent mode handles automation events and any event with explicit prompts
|
||||||
|
|
||||||
|
console.log(`Agent mode: githubToken provided: ${!!githubToken}, length: ${githubToken?.length || 0}`);
|
||||||
|
|
||||||
// TODO: handle by createPrompt (similar to tag and review modes)
|
// TODO: handle by createPrompt (similar to tag and review modes)
|
||||||
// Create prompt directory
|
// Create prompt directory
|
||||||
@@ -72,7 +74,7 @@ export const agentMode: Mode = {
|
|||||||
`${process.env.GITHUB_ACTION_PATH}/src/mcp/github-comment-server.ts`,
|
`${process.env.GITHUB_ACTION_PATH}/src/mcp/github-comment-server.ts`,
|
||||||
],
|
],
|
||||||
env: {
|
env: {
|
||||||
GITHUB_TOKEN: process.env.GITHUB_TOKEN || "",
|
GITHUB_TOKEN: githubToken || "",
|
||||||
REPO_OWNER: context.repository.owner,
|
REPO_OWNER: context.repository.owner,
|
||||||
REPO_NAME: context.repository.repo,
|
REPO_NAME: context.repository.repo,
|
||||||
GITHUB_EVENT_NAME: process.env.GITHUB_EVENT_NAME || "",
|
GITHUB_EVENT_NAME: process.env.GITHUB_EVENT_NAME || "",
|
||||||
|
|||||||
1
undefined/claude-prompts/claude-prompt.txt
Normal file
1
undefined/claude-prompts/claude-prompt.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Custom prompt content
|
||||||
Reference in New Issue
Block a user