This commit is contained in:
ollie-anthropic
2025-08-27 14:57:36 -07:00
committed by Ashwin Bhat
parent 7bd5b28434
commit 2ef669b4c0
3 changed files with 19 additions and 17 deletions

View File

@@ -122,7 +122,6 @@ runs:
# Install Claude Code
bun install -g @anthropic-ai/claude-code
- name: Run Claude Code Action
shell: bash
id: run_claude

View File

@@ -7,7 +7,10 @@ import * as core from "@actions/core";
import type { GitHubContext } from "../../github/context";
import type { Octokits } from "../../github/api/client";
import type { ResumeResponse, ResumeResult } from "../../types/resume";
import { setupBranch as setupBaseBranch, type BranchInfo } from "../../github/operations/branch";
import {
setupBranch as setupBaseBranch,
type BranchInfo,
} from "../../github/operations/branch";
export type RemoteBranchInfo = BranchInfo & {
resumeMessages?: ResumeResult["messages"];