diff --git a/dist/index.js b/dist/index.js index 5e2c669..1ddd755 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1826,9 +1826,6 @@ _Updated at ${new Date().toLocaleString('en-US', { timeZone: 'America/Los_Angele }); // Delete stale comments for (const comment of commentsResponse.data) { - core.info(`analyzing comment: ${comment.id}`); - core.info(`analyzing comment body: ${comment.body}`); - core.info(`looking for ${prefixHeader}`); if ((_c = comment.body) === null || _c === void 0 ? void 0 : _c.includes(prefixHeader)) { core.info(`deleting comment ${comment.id}`); octokit.rest.issues.deleteComment({ diff --git a/src/main.ts b/src/main.ts index 816e32d..c76bc0c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -189,9 +189,6 @@ _Updated at ${new Date().toLocaleString('en-US', { timeZone: 'America/Los_Angele // Delete stale comments for (const comment of commentsResponse.data) { - core.info(`analyzing comment: ${comment.id}`) - core.info(`analyzing comment body: ${comment.body}`) - core.info(`looking for ${prefixHeader}`) if (comment.body?.includes(prefixHeader)) { core.info(`deleting comment ${comment.id}`) octokit.rest.issues.deleteComment({