We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 279efb9 commit 148d3b1Copy full SHA for 148d3b1
1 file changed
src/main/kotlin/com/project/codereview/core/service/ReviewExecutor.kt
@@ -48,14 +48,14 @@ class ReviewExecutor(
48
49
return try {
50
if (!review.contains(REJECT_REVIEW)) {
51
-// githubReviewClient.addReviewComment(
52
-// GithubReviewDto(
53
-// cmd.payload.pull_request,
54
-// cmd.diff,
55
-// cmd.payload.installation.id,
56
-// review
57
-// )
58
+ githubReviewClient.addReviewComment(
+ GithubReviewDto(
+ cmd.payload.pull_request,
+ cmd.diff,
+ cmd.payload.installation.id,
+ review
+ )
59
}
60
ReviewOutcome.Success()
61
} catch (t: Throwable) {
0 commit comments