- add new ability to define exclude_labels for categories (give greater flexibility)

- FIX https://github.com/mikepenz/release-changelog-builder-action/issues/681
This commit is contained in:
Mike Penz
2022-02-11 11:12:39 +01:00
parent 0b69e37c22
commit a0a47047d6
4 changed files with 34 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@ export interface Configuration {
export interface Category {
title: string // the title of this category
labels: string[] // labels to associate PRs to this category
exclude_labels?: string[] // if an exclude label is detected, the PR will be excluded from this category
exhaustive?: boolean // requires all labels to be present in the PR
}