mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 23:14:13 +08:00
Compare commits
16 Commits
test-no-ap
...
test-gh-co
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c1cb01197 | ||
|
|
f0e69f3979 | ||
|
|
1b2f5c373e | ||
|
|
49514f528d | ||
|
|
a32b63580e | ||
|
|
b1820e0342 | ||
|
|
5a9f227619 | ||
|
|
86b376366f | ||
|
|
05d9889165 | ||
|
|
708a97434b | ||
|
|
23491a8791 | ||
|
|
262c847203 | ||
|
|
33463c0075 | ||
|
|
239d95f919 | ||
|
|
e740506de0 | ||
|
|
b324e00c16 |
17
.github/workflows/claude-auto-review-test.yml
vendored
17
.github/workflows/claude-auto-review-test.yml
vendored
@@ -2,7 +2,7 @@ name: Auto review PRs
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [opened]
|
types: [opened, synchronize]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
auto-review:
|
auto-review:
|
||||||
@@ -18,16 +18,21 @@ jobs:
|
|||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Auto review PR
|
- name: Auto review PR
|
||||||
uses: anthropics/claude-code-action@v1-dev
|
uses: ./
|
||||||
with:
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
prompt: |
|
prompt: |
|
||||||
Please review this PR. Look at the changes and provide thoughtful feedback on:
|
Please review this PR and provide comprehensive feedback.
|
||||||
|
|
||||||
|
Focus on:
|
||||||
- Code quality and best practices
|
- Code quality and best practices
|
||||||
- Potential bugs or issues
|
- Potential bugs or issues
|
||||||
- Suggestions for improvements
|
- Suggestions for improvements
|
||||||
- Overall architecture and design decisions
|
- Overall architecture and design decisions
|
||||||
- Documentation consistency: Verify that README.md and other documentation files are updated to reflect any code changes (especially new inputs, features, or configuration options)
|
- Documentation consistency
|
||||||
|
|
||||||
Be constructive and specific in your feedback. Give inline comments where applicable.
|
Use the GitHub MCP tools to create a proper PR review with comments.
|
||||||
|
You can use mcp__github__create_pending_pull_request_review to start a review
|
||||||
|
and mcp__github__submit_pull_request_review to submit it as a COMMENT (not APPROVE).
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
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"
|
claude_args: "--allowedTools mcp__github__create_pending_pull_request_review,mcp__github__submit_pull_request_review,Read,Grep,Glob"
|
||||||
|
|||||||
18
README.md
18
README.md
@@ -57,3 +57,21 @@ Having issues or questions? Check out our [Frequently Asked Questions](./docs/fa
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
This project is licensed under the MIT License—see the LICENSE file for details.
|
This project is licensed under the MIT License—see the LICENSE file for details.
|
||||||
|
|
||||||
|
|
||||||
|
## Testing token fix
|
||||||
|
|
||||||
|
|
||||||
|
## Testing token fix v2
|
||||||
|
|
||||||
|
|
||||||
|
## Testing token fix v3
|
||||||
|
|
||||||
|
|
||||||
|
## Testing review tools
|
||||||
|
|
||||||
|
|
||||||
|
## Testing MCP server fix
|
||||||
|
|
||||||
|
|
||||||
|
## Testing gh comment command
|
||||||
|
|||||||
@@ -111,10 +111,29 @@ export async function prepareMcpConfig(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
// CI server is included when we have a workflow token and context is a PR
|
// Include inline comment server for experimental review mode
|
||||||
const hasWorkflowToken = !!process.env.DEFAULT_WORKFLOW_TOKEN;
|
if (context.inputs.mode === "experimental-review" && context.isPR) {
|
||||||
|
baseMcpConfig.mcpServers.github_inline_comment = {
|
||||||
|
command: "bun",
|
||||||
|
args: [
|
||||||
|
"run",
|
||||||
|
`${process.env.GITHUB_ACTION_PATH}/src/mcp/github-inline-comment-server.ts`,
|
||||||
|
],
|
||||||
|
env: {
|
||||||
|
GITHUB_TOKEN: githubToken,
|
||||||
|
REPO_OWNER: owner,
|
||||||
|
REPO_NAME: repo,
|
||||||
|
PR_NUMBER: context.entityNumber?.toString() || "",
|
||||||
|
GITHUB_API_URL: GITHUB_API_URL,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
if (context.isPR && hasWorkflowToken) {
|
// Only add CI server if we have actions:read permission and we're in a PR context
|
||||||
|
const hasActionsReadPermission =
|
||||||
|
context.inputs.additionalPermissions.get("actions") === "read";
|
||||||
|
|
||||||
|
if (context.isPR && hasActionsReadPermission) {
|
||||||
// Verify the token actually has actions:read permission
|
// Verify the token actually has actions:read permission
|
||||||
const actuallyHasPermission = await checkActionsReadPermission(
|
const actuallyHasPermission = await checkActionsReadPermission(
|
||||||
process.env.DEFAULT_WORKFLOW_TOKEN || "",
|
process.env.DEFAULT_WORKFLOW_TOKEN || "",
|
||||||
|
|||||||
@@ -2,6 +2,16 @@ import * as core from "@actions/core";
|
|||||||
import { mkdir, writeFile } from "fs/promises";
|
import { mkdir, writeFile } from "fs/promises";
|
||||||
import type { Mode, ModeOptions, ModeResult } from "../types";
|
import type { Mode, ModeOptions, ModeResult } from "../types";
|
||||||
import type { PreparedContext } from "../../create-prompt/types";
|
import type { PreparedContext } from "../../create-prompt/types";
|
||||||
|
import { GITHUB_API_URL, GITHUB_SERVER_URL } from "../../github/api/config";
|
||||||
|
import { fetchGitHubData } from "../../github/data/fetcher";
|
||||||
|
import {
|
||||||
|
formatContext,
|
||||||
|
formatBody,
|
||||||
|
formatComments,
|
||||||
|
formatReviewComments,
|
||||||
|
formatChangedFilesWithSHA
|
||||||
|
} from "../../github/data/formatter";
|
||||||
|
import { isEntityContext } from "../../github/context";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Agent mode implementation.
|
* Agent mode implementation.
|
||||||
@@ -39,21 +49,64 @@ export const agentMode: Mode = {
|
|||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
async prepare({ context, githubToken }: ModeOptions): Promise<ModeResult> {
|
async prepare({ context, githubToken, octokit }: 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}`);
|
console.log(`Agent mode: githubToken provided: ${!!githubToken}, length: ${githubToken?.length || 0}`);
|
||||||
|
|
||||||
// TODO: handle by createPrompt (similar to tag and review modes)
|
|
||||||
// Create prompt directory
|
// Create prompt directory
|
||||||
await mkdir(`${process.env.RUNNER_TEMP}/claude-prompts`, {
|
await mkdir(`${process.env.RUNNER_TEMP}/claude-prompts`, {
|
||||||
recursive: true,
|
recursive: true,
|
||||||
});
|
});
|
||||||
// Write the prompt file - the base action requires a prompt_file parameter.
|
|
||||||
// Use the unified prompt field from v1.0.
|
// Fetch GitHub context data if we're in an entity context (PR/issue)
|
||||||
const promptContent =
|
let githubContextPrefix = '';
|
||||||
context.inputs.prompt ||
|
if (isEntityContext(context)) {
|
||||||
|
try {
|
||||||
|
const githubData = await fetchGitHubData({
|
||||||
|
octokits: octokit,
|
||||||
|
repository: `${context.repository.owner}/${context.repository.repo}`,
|
||||||
|
prNumber: context.entityNumber.toString(),
|
||||||
|
isPR: context.isPR,
|
||||||
|
triggerUsername: context.actor,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Format the GitHub data into a readable context
|
||||||
|
const formattedContext = formatContext(githubData.contextData, context.isPR);
|
||||||
|
const formattedBody = githubData.contextData?.body
|
||||||
|
? formatBody(githubData.contextData.body, githubData.imageUrlMap)
|
||||||
|
: "No description provided";
|
||||||
|
const formattedComments = formatComments(githubData.comments, githubData.imageUrlMap);
|
||||||
|
|
||||||
|
// Build the context prefix
|
||||||
|
githubContextPrefix = `## GitHub Context
|
||||||
|
|
||||||
|
${formattedContext}
|
||||||
|
|
||||||
|
### Description
|
||||||
|
${formattedBody}`;
|
||||||
|
|
||||||
|
if (formattedComments && formattedComments.trim()) {
|
||||||
|
githubContextPrefix += `\n\n### Comments\n${formattedComments}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (context.isPR && githubData.changedFilesWithSHA) {
|
||||||
|
const formattedFiles = formatChangedFilesWithSHA(githubData.changedFilesWithSHA);
|
||||||
|
githubContextPrefix += `\n\n### Changed Files\n${formattedFiles}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
githubContextPrefix += '\n\n## Your Task\n\n';
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('Failed to fetch GitHub context:', error);
|
||||||
|
// Continue without GitHub context if fetching fails
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write the prompt file with GitHub context prefix
|
||||||
|
const userPrompt = context.inputs.prompt ||
|
||||||
`Repository: ${context.repository.owner}/${context.repository.repo}`;
|
`Repository: ${context.repository.owner}/${context.repository.repo}`;
|
||||||
|
const promptContent = githubContextPrefix + userPrompt;
|
||||||
|
|
||||||
await writeFile(
|
await writeFile(
|
||||||
`${process.env.RUNNER_TEMP}/claude-prompts/claude-prompt.txt`,
|
`${process.env.RUNNER_TEMP}/claude-prompts/claude-prompt.txt`,
|
||||||
promptContent,
|
promptContent,
|
||||||
@@ -62,12 +115,12 @@ export const agentMode: Mode = {
|
|||||||
// Agent mode: User has full control via claudeArgs
|
// Agent mode: User has full control via claudeArgs
|
||||||
// No default tools are enforced - Claude Code's defaults will apply
|
// No default tools are enforced - Claude Code's defaults will apply
|
||||||
|
|
||||||
// Always include the GitHub comment server in agent mode
|
// Include both GitHub comment server and main GitHub MCP server by default
|
||||||
// This ensures GitHub tools (PR reviews, comments, etc.) work out of the box
|
// This ensures comprehensive GitHub tools work out of the box
|
||||||
// without requiring users to manually configure the MCP server
|
|
||||||
const mcpConfig: any = {
|
const mcpConfig: any = {
|
||||||
mcpServers: {
|
mcpServers: {
|
||||||
"github-comment-server": {
|
// GitHub comment server for updating Claude comments
|
||||||
|
github_comment: {
|
||||||
command: "bun",
|
command: "bun",
|
||||||
args: [
|
args: [
|
||||||
"run",
|
"run",
|
||||||
@@ -77,14 +130,58 @@ export const agentMode: Mode = {
|
|||||||
GITHUB_TOKEN: githubToken || "",
|
GITHUB_TOKEN: githubToken || "",
|
||||||
REPO_OWNER: context.repository.owner,
|
REPO_OWNER: context.repository.owner,
|
||||||
REPO_NAME: context.repository.repo,
|
REPO_NAME: context.repository.repo,
|
||||||
|
CLAUDE_COMMENT_ID: process.env.CLAUDE_COMMENT_ID || "",
|
||||||
|
PR_NUMBER: (context as any).entityNumber?.toString() || process.env.GITHUB_EVENT_PULL_REQUEST_NUMBER || "",
|
||||||
|
ISSUE_NUMBER: (context as any).entityNumber?.toString() || "",
|
||||||
GITHUB_EVENT_NAME: process.env.GITHUB_EVENT_NAME || "",
|
GITHUB_EVENT_NAME: process.env.GITHUB_EVENT_NAME || "",
|
||||||
GITHUB_API_URL:
|
GITHUB_API_URL:
|
||||||
process.env.GITHUB_API_URL || "https://api.github.com",
|
process.env.GITHUB_API_URL || "https://api.github.com",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// Main GitHub MCP server for comprehensive GitHub operations
|
||||||
|
github: {
|
||||||
|
command: "docker",
|
||||||
|
args: [
|
||||||
|
"run",
|
||||||
|
"-i",
|
||||||
|
"--rm",
|
||||||
|
"-e",
|
||||||
|
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
||||||
|
"-e",
|
||||||
|
"GITHUB_HOST",
|
||||||
|
"ghcr.io/github/github-mcp-server:sha-efef8ae", // https://github.com/github/github-mcp-server/releases/tag/v0.9.0
|
||||||
|
],
|
||||||
|
env: {
|
||||||
|
GITHUB_PERSONAL_ACCESS_TOKEN: githubToken || "",
|
||||||
|
GITHUB_HOST: GITHUB_SERVER_URL,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Include inline comment server for PR contexts
|
||||||
|
if (context.eventName === "pull_request" || context.eventName === "pull_request_review") {
|
||||||
|
// Get PR number from the context payload
|
||||||
|
const prNumber = (context as any).payload?.pull_request?.number ||
|
||||||
|
(context as any).entityNumber ||
|
||||||
|
"";
|
||||||
|
|
||||||
|
mcpConfig.mcpServers.github_inline_comment = {
|
||||||
|
command: "bun",
|
||||||
|
args: [
|
||||||
|
"run",
|
||||||
|
`${process.env.GITHUB_ACTION_PATH}/src/mcp/github-inline-comment-server.ts`,
|
||||||
|
],
|
||||||
|
env: {
|
||||||
|
GITHUB_TOKEN: githubToken || "",
|
||||||
|
REPO_OWNER: context.repository.owner,
|
||||||
|
REPO_NAME: context.repository.repo,
|
||||||
|
PR_NUMBER: prNumber.toString(),
|
||||||
|
GITHUB_API_URL: process.env.GITHUB_API_URL || "https://api.github.com",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
// Add user-provided additional MCP config if any
|
// Add user-provided additional MCP config if any
|
||||||
const additionalMcpConfig = process.env.MCP_CONFIG || "";
|
const additionalMcpConfig = process.env.MCP_CONFIG || "";
|
||||||
if (additionalMcpConfig.trim()) {
|
if (additionalMcpConfig.trim()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user