Update code comment
This commit is contained in:
parent
e878daaea6
commit
13f3458051
|
@ -479,7 +479,7 @@ class IssuesProcessor {
|
||||||
if (this._isIncludeOnlyAssigned(issue)) {
|
if (this._isIncludeOnlyAssigned(issue)) {
|
||||||
issueLogger.info(`Skipping this $$type because it's assignees list is empty`);
|
issueLogger.info(`Skipping this $$type because it's assignees list is empty`);
|
||||||
IssuesProcessor._endIssueProcessing(issue);
|
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));
|
const onlyLabels = words_to_list_1.wordsToList(this._getOnlyLabels(issue));
|
||||||
if (onlyLabels.length > 0) {
|
if (onlyLabels.length > 0) {
|
||||||
|
|
|
@ -226,7 +226,7 @@ export class IssuesProcessor {
|
||||||
`Skipping this $$type because it's assignees list is empty`
|
`Skipping this $$type because it's assignees list is empty`
|
||||||
);
|
);
|
||||||
IssuesProcessor._endIssueProcessing(issue);
|
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));
|
const onlyLabels: string[] = wordsToList(this._getOnlyLabels(issue));
|
||||||
|
|
Loading…
Reference in New Issue