@@ -85,7 +85,8 @@ Task<byte[]> ExtractFileFromGit(
8585 /// <summary>
8686 /// Posts a new PR review comment.
8787 /// </summary>
88- /// <param name="repository">The repository.</param>
88+ /// <param name="localRepository">The local repository.</param>
89+ /// <param name="remoteRepositoryOwner">The owner of the repository fork to post to.</param>
8990 /// <param name="user">The user posting the comment.</param>
9091 /// <param name="number">The pull request number.</param>
9192 /// <param name="body">The comment body.</param>
@@ -94,7 +95,8 @@ Task<byte[]> ExtractFileFromGit(
9495 /// <param name="position">The line index in the diff to comment on.</param>
9596 /// <returns>A model representing the posted comment.</returns>
9697 Task < IPullRequestReviewCommentModel > PostReviewComment (
97- ILocalRepositoryModel repository ,
98+ ILocalRepositoryModel localRepository ,
99+ string remoteRepositoryOwner ,
98100 IAccount user ,
99101 int number ,
100102 string body ,
@@ -105,14 +107,16 @@ Task<IPullRequestReviewCommentModel> PostReviewComment(
105107 /// <summary>
106108 /// Posts a PR review comment reply.
107109 /// </summary>
108- /// <param name="repository">The repository.</param>
110+ /// <param name="localRepository">The local repository.</param>
111+ /// <param name="remoteRepositoryOwner">The owner of the repository fork to post to.</param>
109112 /// <param name="user">The user posting the comment.</param>
110113 /// <param name="number">The pull request number.</param>
111114 /// <param name="body">The comment body.</param>
112115 /// <param name="inReplyTo">The comment ID to reply to.</param>
113116 /// <returns>A model representing the posted comment.</returns>
114117 Task < IPullRequestReviewCommentModel > PostReviewComment (
115- ILocalRepositoryModel repository ,
118+ ILocalRepositoryModel localRepository ,
119+ string remoteRepositoryOwner ,
116120 IAccount user ,
117121 int number ,
118122 string body ,
0 commit comments