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:
km-anthropic
2025-08-28 14:46:22 -07:00
parent dbdd70852d
commit 92ba9fb7bf
2 changed files with 4 additions and 2 deletions

View File

@@ -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:

View File

@@ -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;
}; };