diff --git a/dist/index.js b/dist/index.js index ae2ec63f..2893ec1a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -623,6 +623,7 @@ class IssuesProcessor { } // find any comments since the date const comments = yield this.listIssueComments(issue.number, sinceDate); + core.debug(`The actor is: ${actor}`); const filteredComments = comments.filter(comment => comment.user.type === 'User' && comment.user.login !== actor); issueLogger.info(`Comments not made by actor or another bot: ${logger_service_1.LoggerService.cyan(filteredComments.length)}`); // if there are any user comments returned diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index 07e995a5..cf7d4a94 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -687,6 +687,7 @@ export class IssuesProcessor { // find any comments since the date const comments = await this.listIssueComments(issue.number, sinceDate); + core.debug(`The actor is: ${actor}`) const filteredComments = comments.filter( comment => comment.user.type === 'User' && comment.user.login !== actor );