From 028d46942af0c605d1057510455ac4de38af31d2 Mon Sep 17 00:00:00 2001 From: claw Date: Wed, 13 May 2026 10:41:52 -0700 Subject: [PATCH] fix(gitea): update PostReview doc comment to include COMMENT event value --- gitea/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/client.go b/gitea/client.go index e4f8dd7..9243b14 100644 --- a/gitea/client.go +++ b/gitea/client.go @@ -262,7 +262,7 @@ func (c *Client) GetFileContentRef(ctx context.Context, owner, repo, filepath, r } // PostReview submits a review to a PR and returns the created review. -// event should be "APPROVED" or "REQUEST_CHANGES". +// event should be one of "APPROVED", "REQUEST_CHANGES", or "COMMENT". // commitID anchors the review to a specific commit SHA. If empty, Gitea // defaults to the current PR head. // comments are optional inline comments attached to specific lines.