From a9444bde1331699c36d07f486558fe1b4faf0c32 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 12 Nov 2021 11:41:57 +0100 Subject: [PATCH] - add readme for `on_empty` property --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f25794b..9407ea5 100644 --- a/README.md +++ b/README.md @@ -318,6 +318,7 @@ Table of descriptions for the `configuration.json` options to configure the resu | label_extractor.on_property | The property to retrieve the text from. This is optional. Defaults to: `body`. Alternative values: `title`, `author`, `milestone`. | | label_extractor.method | The extraction method used. Defaults to: `replace`. Alternative value: `match`. The method specified references the JavaScript String method. | | label_extractor.flags | Defines the regex flags specified for the pattern. Default: `gu` | +| label_extractor.on_empty | Defines the placeholder to be filled in, if the regex does not lead to a result. | | duplicate_filter | Defines the `Extractor` to use for retrieving the identifier for a PR. In case of duplicates will keep the last matching pull request (depends on `sort`). See `label_extractor` for details on `Extractor` properties. | | transformers | An array of `transform` specifications, offering a flexible API to modify the text per pull request. This is applied on the change text created with `pr_template`. `transformers` are executed per change, in the order specified | | transformer.pattern | A `regex` pattern, extracting values of the change message. |