From cffda38cb3c3024034c5cfef5422bba4e603658c Mon Sep 17 00:00:00 2001 From: mviswanathsai Date: Tue, 5 Mar 2024 23:34:09 +0530 Subject: [PATCH] updated dist --- dist/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 1e527af8..6ac1a940 100644 --- a/dist/index.js +++ b/dist/index.js @@ -877,6 +877,8 @@ class IssuesProcessor { } if (shouldMarkAsRotten) { issueLogger.info(`This $$type should be marked as rotten based on the option ${issueLogger.createOptionLink(this._getDaysBeforeRottenUsedOptionName(issue))} (${logger_service_1.LoggerService.cyan(daysBeforeRotten)})`); + // remove the stale label before marking the issue as rotten + yield this._removeStaleLabel(issue, staleLabel); yield this._markRotten(issue, rottenMessage, rottenLabel, skipMessage); issue.isRotten = true; // This issue is now considered rotten issue.markedRottenThisRun = true;