4 Commits

Author SHA1 Message Date
woehrer12
1fd3bbc91b chore: claude-code to v0.0.24 (#3) 2025-07-06 22:48:46 +01:00
Mark Wylde
a8399fe052 Merge pull request #2 from zinglax/shallow-fetch
Adding --depth=1 to fetchs to save time for large repos
2025-06-06 08:54:50 +01:00
zinglax
f640f38102 Adding --depth=1 to fetchs to save time
See https://github.com/anthropics/claude-code-action/issues/52
2025-06-04 09:44:05 -04:00
Mark Wylde
54147e92b6 fix: follow commit convention 2025-06-01 12:21:05 +01:00
4 changed files with 6 additions and 4 deletions

View File

@@ -113,7 +113,7 @@ runs:
- name: Run Claude Code - name: Run Claude Code
id: claude-code id: claude-code
if: steps.prepare.outputs.contains_trigger == 'true' if: steps.prepare.outputs.contains_trigger == 'true'
uses: anthropics/claude-code-base-action@c8e31bd52d9a149b3f8309d7978c6edaa282688d # v0.0.8 uses: anthropics/claude-code-base-action@v0.0.24
with: with:
prompt_file: /tmp/claude-prompts/claude-prompt.txt prompt_file: /tmp/claude-prompts/claude-prompt.txt
allowed_tools: ${{ env.ALLOWED_TOOLS }} allowed_tools: ${{ env.ALLOWED_TOOLS }}

View File

@@ -566,6 +566,7 @@ ${
eventData.isPR && !eventData.claudeBranch eventData.isPR && !eventData.claudeBranch
? ` ? `
- Commit changes using mcp__local_git_ops__commit_files to the existing branch (works for both new and existing files). - Commit changes using mcp__local_git_ops__commit_files to the existing branch (works for both new and existing files).
- Make sure commits follow the same convention as other commits in the repository.
- Use mcp__local_git_ops__commit_files to commit files atomically in a single commit (supports single or multiple files). - Use mcp__local_git_ops__commit_files to commit files atomically in a single commit (supports single or multiple files).
- CRITICAL: After committing, you MUST push the branch to the remote repository using mcp__local_git_ops__push_branch - CRITICAL: After committing, you MUST push the branch to the remote repository using mcp__local_git_ops__push_branch
- After pushing, you MUST create a PR using mcp__local_git_ops__create_pull_request. - After pushing, you MUST create a PR using mcp__local_git_ops__create_pull_request.
@@ -574,6 +575,7 @@ ${
? ` ? `
- You are already on the correct branch (${eventData.claudeBranch}). Do not create a new branch. - You are already on the correct branch (${eventData.claudeBranch}). Do not create a new branch.
- Commit changes using mcp__local_git_ops__commit_files (works for both new and existing files) - Commit changes using mcp__local_git_ops__commit_files (works for both new and existing files)
- Make sure commits follow the same convention as other commits in the repository.
- Use mcp__local_git_ops__commit_files to commit files atomically in a single commit (supports single or multiple files). - Use mcp__local_git_ops__commit_files to commit files atomically in a single commit (supports single or multiple files).
- CRITICAL: After committing, you MUST push the branch to the remote repository using mcp__local_git_ops__push_branch - CRITICAL: After committing, you MUST push the branch to the remote repository using mcp__local_git_ops__push_branch
` `

View File

@@ -52,7 +52,7 @@ export async function setupBranch(
); );
// Check out the base branch and let Claude create branches as needed // Check out the base branch and let Claude create branches as needed
await $`git fetch origin ${sourceBranch}`; await $`git fetch origin --depth=1 ${sourceBranch}`;
await $`git checkout ${sourceBranch}`; await $`git checkout ${sourceBranch}`;
await $`git pull origin ${sourceBranch}`; await $`git pull origin ${sourceBranch}`;
@@ -99,7 +99,7 @@ export async function setupBranch(
// Ensure we have the latest version of the source branch // Ensure we have the latest version of the source branch
console.log(`Fetching latest ${sourceBranch}...`); console.log(`Fetching latest ${sourceBranch}...`);
await $`git fetch origin ${sourceBranch}`; await $`git fetch origin --depth=1 ${sourceBranch}`;
// Checkout the source branch // Checkout the source branch
console.log(`Checking out ${sourceBranch}...`); console.log(`Checking out ${sourceBranch}...`);

View File

@@ -85,7 +85,7 @@ export async function branchHasChanges(
*/ */
export async function fetchBranch(branchName: string): Promise<boolean> { export async function fetchBranch(branchName: string): Promise<boolean> {
try { try {
await $`git fetch origin ${branchName}`; await $`git fetch origin --depth=1 ${branchName}`;
return true; return true;
} catch (error) { } catch (error) {
console.log( console.log(