From 3ece3bdbac803cf4c861ab7bd210598589a52acd Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 11 Feb 2022 11:15:39 +0100 Subject: [PATCH] - expand README with new `exclude_labels` --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ef01744..5b74b65 100644 --- a/README.md +++ b/README.md @@ -307,9 +307,10 @@ Table of descriptions for the `configuration.json` options to configure the resu | **Input** | **Description** | |-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| categories | An array of `category` specifications, offering a flexible way to group changes into categories | -| category.title | The display name of a category in the changelog | -| category.labels | An array of labels, to match pull request labels against. If any PR label matches any category label, the pull request will show up under this category | +| categories | An array of `category` specifications, offering a flexible way to group changes into categories. | +| category.title | The display name of a category in the changelog. | +| category.labels | An array of labels, to match pull request labels against. If any PR label matches any category label, the pull request will show up under this category. | +| category.exclude_labels | Similar to `labels`, an array of labels to match PRs against, but if a match occurs the PR is excluded from this category. | | category.exhaustive | Will require all labels defined within this category to be present on the matching PR. | | ignore_labels | An array of labels, to match pull request labels against. If any PR label overlaps, the pull request will be ignored from the changelog. This takes precedence over category labels | | sort | The sort order of pull requests. [ASC, DESC] |