fix: address remaining review findings (interface assertions, DismissReview ctx, import order, filepath param, spelling)

This commit is contained in:
claw
2026-05-12 13:07:41 -07:00
parent b5a5533070
commit 7b0bfea336
5 changed files with 35 additions and 10 deletions
+1 -1
View File
@@ -835,7 +835,7 @@ func (c *Client) ResolveComment(ctx context.Context, owner, repo string, comment
// DismissReview dismisses a review on a pull request.
// This is a stub for the vcs.Reviewer interface; full implementation is Phase 2.
func (c *Client) DismissReview(ctx context.Context, owner, repo string, number int, reviewID int64, message string) error {
return fmt.Errorf("DismissReview: %w", errors.ErrUnsupported)
return fmt.Errorf("dismiss review %d on %s/%s#%d: %w", reviewID, owner, repo, number, errors.ErrUnsupported)
}
// GetFileContentAtRef fetches a file at a specific ref from a repo.