Issue 596/include only assigned (#817)

* Add new 'include-only-assigned' option

If set, only issues containing assignees will be processed

* Test new flag

* Update code comment

* Update src/classes/issues-processor.ts

Co-authored-by: Francesco Renzi <rentziass@github.com>

* Update index.js with typo fix

Co-authored-by: Francesco Renzi <rentziass@github.com>
This commit is contained in:
JoannaaKL
2022-09-12 13:20:57 +02:00
committed by GitHub
parent 33e37032bb
commit 3e4418e47e
7 changed files with 95 additions and 4 deletions

View File

@@ -52,4 +52,5 @@ export interface IIssuesProcessorOptions {
ignorePrUpdates: boolean | undefined;
exemptDraftPr: boolean;
closeIssueReason: string;
includeOnlyAssigned: boolean;
}