- break out some functionality when transforming the pull requests into the changelog

This commit is contained in:
Mike Penz
2024-03-01 18:22:00 +00:00
committed by GitHub
parent 8e8a8fc1c9
commit 47ab0d34bc
2 changed files with 78 additions and 67 deletions
+2
View File
@@ -30,6 +30,8 @@ export interface Category {
exhaustive?: boolean // requires all labels to be present in the PR
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.
categories?: Category[] // allows for nested categories, items matched for a child category won't show up in the parent
consume?: boolean // defines if the matched PR will be consumed by this category. Consumed PRs won't show up in any category *after*
}
/**