- rename to exhaustive_rules

- recompile dist
This commit is contained in:
Mike Penz
2023-05-03 17:49:57 +00:00
committed by GitHub
parent d594c56834
commit 9368ec2457
6 changed files with 184 additions and 118 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export interface Category {
exclude_labels?: string[] // if an exclude label is detected, the PR will be excluded from this category
rules?: Rule[] // rules to associate PRs to this category
exhaustive?: boolean // requires all labels to be present in the PR
exclusive_rules?: boolean // requires all rules to be present in the PR (if not set, defaults to exhaustive value)
exhaustive_rules?: boolean // requires all rules to be present in the PR (if not set, defaults to exhaustive value)
empty_content?: string // if the category has no matching PRs, this content will be used. If not set, the category will be skipped in the changelog.
}