diff --git a/dist/index.js b/dist/index.js index 9d2d4d89..095a8cf1 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8514,7 +8514,6 @@ class IssueProcessor { let isStale = IssueProcessor.isLabeled(issue, staleLabel); // should this issue be marked stale? const shouldBeStale = !IssueProcessor.updatedSince(issue.updated_at, this.options.daysBeforeStale); - // TODO: better stale calculation here not including bot comments // determine if this issue needs to be marked stale first if (!isStale && shouldBeStale) { core.info(`Marking ${issueType} stale because it was last updated on ${issue.updated_at} and it does not have a stale label`); diff --git a/src/IssueProcessor.ts b/src/IssueProcessor.ts index 8a30feb2..7aad34fa 100644 --- a/src/IssueProcessor.ts +++ b/src/IssueProcessor.ts @@ -163,8 +163,6 @@ export class IssueProcessor { this.options.daysBeforeStale ); - // TODO: better stale calculation here not including bot comments - // determine if this issue needs to be marked stale first if (!isStale && shouldBeStale) { core.info(