From 13f3458051cf17229dd0de716ba8c050f733d482 Mon Sep 17 00:00:00 2001 From: JoannaaKL Date: Mon, 12 Sep 2022 10:01:36 +0000 Subject: [PATCH] Update code comment --- dist/index.js | 2 +- src/classes/issues-processor.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index b247d32b..6eb9b465 100644 --- a/dist/index.js +++ b/dist/index.js @@ -479,7 +479,7 @@ class IssuesProcessor { if (this._isIncludeOnlyAssigned(issue)) { issueLogger.info(`Skipping this $$type because it's assignees list is empty`); IssuesProcessor._endIssueProcessing(issue); - return; // If the issue has an 'includeOnlyAssigned' option, process only issues with nonempty assignees list + return; // If the issue has an 'include-only-assigned' option set, process only issues with nonempty assignees list } const onlyLabels = words_to_list_1.wordsToList(this._getOnlyLabels(issue)); if (onlyLabels.length > 0) { diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index e5b657c4..2123c720 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -226,7 +226,7 @@ export class IssuesProcessor { `Skipping this $$type because it's assignees list is empty` ); IssuesProcessor._endIssueProcessing(issue); - return; // If the issue has an 'include-only-assigned' option, process only issues with nonempty assignees list + return; // If the issue has an 'include-only-assigned' option set, process only issues with nonempty assignees list } const onlyLabels: string[] = wordsToList(this._getOnlyLabels(issue));