mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-23 06:54:13 +08:00
fix conflict
This commit is contained in:
@@ -3,12 +3,8 @@ import { mkdir, writeFile } from "fs/promises";
|
||||
import type { Mode, ModeOptions, ModeResult } from "../types";
|
||||
import { isRepositoryDispatchEvent } from "../../github/context";
|
||||
import type { GitHubContext } from "../../github/context";
|
||||
<<<<<<< HEAD
|
||||
import { setupBranch } from "../../github/operations/branch";
|
||||
=======
|
||||
import { setupBranchWithResume } from "./branch";
|
||||
import { configureGitAuth } from "../../github/operations/git-config";
|
||||
>>>>>>> 7d60d87 (feat: add resume endpoint support for remote-agent mode)
|
||||
import { prepareMcpConfig } from "../../mcp/install-mcp-server";
|
||||
import { GITHUB_SERVER_URL } from "../../github/api/config";
|
||||
import {
|
||||
@@ -237,10 +233,12 @@ export const remoteAgentMode: Mode = {
|
||||
);
|
||||
// Store resume messages for later use
|
||||
// These will be prepended to the conversation when Claude starts
|
||||
core.setOutput("resume_messages", JSON.stringify(branchInfo.resumeMessages));
|
||||
core.setOutput(
|
||||
"resume_messages",
|
||||
JSON.stringify(branchInfo.resumeMessages),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
// Report workflow initialized
|
||||
if (systemProgressConfig) {
|
||||
reportWorkflowInitialized(
|
||||
|
||||
Reference in New Issue
Block a user