diff --git a/dist/index.js b/dist/index.js index ea80481b9..40f3c8f28 100644 --- a/dist/index.js +++ b/dist/index.js @@ -302,7 +302,7 @@ class IssuesProcessor { const labelsToAddWhenUnstale = words_to_list_1.wordsToList(this.options.labelsToAddWhenUnstale); const labelsToRemoveWhenUnstale = words_to_list_1.wordsToList(this.options.labelsToRemoveWhenUnstale); for (const issue of issues.values()) { - // Skip the processing if no more operations remains + // Stop the processing if no more operations remains if (!this._hasRemainingOperations()) { break; } diff --git a/src/classes/issues-processor.ts b/src/classes/issues-processor.ts index e77e3055c..7539515fd 100644 --- a/src/classes/issues-processor.ts +++ b/src/classes/issues-processor.ts @@ -135,7 +135,7 @@ export class IssuesProcessor { ); for (const issue of issues.values()) { - // Skip the processing if no more operations remains + // Stop the processing if no more operations remains if (!this._hasRemainingOperations()) { break; }