mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-22 22:44:13 +08:00
fix: address review comments
- Simplify track_progress description to be more general - Move import to top of types.ts file
This commit is contained in:
@@ -74,7 +74,7 @@ inputs:
|
|||||||
required: false
|
required: false
|
||||||
default: "false"
|
default: "false"
|
||||||
track_progress:
|
track_progress:
|
||||||
description: "Force tag mode with tracking comments for pull_request and issue events. Only applicable to pull_request (opened, synchronize, ready_for_review, reopened) and issue (opened, edited, labeled, assigned) events."
|
description: "Force tag mode with tracking comments for pull_request and issue events"
|
||||||
required: false
|
required: false
|
||||||
default: "false"
|
default: "false"
|
||||||
experimental_allowed_domains:
|
experimental_allowed_domains:
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import type { GitHubContext } from "../github/context";
|
||||||
|
|
||||||
export type CommonFields = {
|
export type CommonFields = {
|
||||||
repository: string;
|
repository: string;
|
||||||
claudeCommentId: string;
|
claudeCommentId: string;
|
||||||
@@ -99,5 +101,5 @@ export type EventData =
|
|||||||
// Combined type with separate eventData field
|
// Combined type with separate eventData field
|
||||||
export type PreparedContext = CommonFields & {
|
export type PreparedContext = CommonFields & {
|
||||||
eventData: EventData;
|
eventData: EventData;
|
||||||
githubContext?: import("../github/context").GitHubContext;
|
githubContext?: GitHubContext;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user