From ec30f219cd5d72f75e8772fbb3b452e8d2eef9a6 Mon Sep 17 00:00:00 2001 From: John Sudol <24583161+johnsudol@users.noreply.github.com> Date: Thu, 15 Dec 2022 17:47:54 +0000 Subject: [PATCH] add dist --- dist/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 789fadd3d..f9d9e5f33 100644 --- a/dist/index.js +++ b/dist/index.js @@ -534,9 +534,7 @@ class IssuesProcessor { const exemptLabels = words_to_list_1.wordsToList(isExemptPr); const hasExemptLabel = exemptLabels.some((exemptLabel) => is_labeled_1.isLabeled(issue, exemptLabel)); if (hasExemptLabel) { - issueLogger.info(`Skipping this $$type because it contains an exempt label, see ${issueLogger.createOptionLink(isExemptPr ? - option_1.Option.ExemptPrLabels : - option_1.Option.ExemptIssueLabels)} for more details`); + issueLogger.info(`Skipping this $$type because it contains an exempt label, see ${issueLogger.createOptionLink(isExemptPr ? option_1.Option.ExemptPrLabels : option_1.Option.ExemptIssueLabels)} for more details`); IssuesProcessor._endIssueProcessing(issue); return; // Don't process exempt issues } @@ -2250,7 +2248,7 @@ function _getAndValidateArgs() { ignorePrUpdates: _toOptionalBoolean('ignore-pr-updates'), exemptDraftPr: core.getInput('exempt-draft-pr') === 'true', closeIssueReason: core.getInput('close-issue-reason'), - includeOnlyAssigned: core.getInput('include-only-assigned') === 'true', + includeOnlyAssigned: core.getInput('include-only-assigned') === 'true' }; for (const numberInput of ['days-before-stale']) { if (isNaN(parseFloat(core.getInput(numberInput)))) {