diff --git a/src/tasks/processIssueComment/CommentReply/index.js b/src/tasks/processIssueComment/CommentReply/index.js index 7c0473eb..2b30f096 100644 --- a/src/tasks/processIssueComment/CommentReply/index.js +++ b/src/tasks/processIssueComment/CommentReply/index.js @@ -27,6 +27,7 @@ class CommentReply { this.sent = true const fromUser = this.replyingToWho() const body = `@${fromUser} ${this.message}` + this.context.log.info(`Sending comment: ${body}`) const issueComment = this.context.issue({ body }) return this.context.github.issues.createComment(issueComment) }