From 9e16203ccbc404458243addb58caf2bed5582f2a Mon Sep 17 00:00:00 2001 From: Omid Mogasemi Date: Fri, 20 Mar 2026 19:02:46 +0000 Subject: [PATCH] fix: restore thread id in get_review_comments response --- pkg/github/minimal_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/github/minimal_types.go b/pkg/github/minimal_types.go index ff4149a22..a93d29ead 100644 --- a/pkg/github/minimal_types.go +++ b/pkg/github/minimal_types.go @@ -1547,7 +1547,7 @@ type MinimalReviewComment struct { // MinimalReviewThread is the trimmed output type for PR review thread objects. type MinimalReviewThread struct { - ID string + ID string `json:"id"` IsResolved bool `json:"is_resolved"` IsOutdated bool `json:"is_outdated"` IsCollapsed bool `json:"is_collapsed"`