From 9c063890c0c6f6bb37c9b8a91febedfd2ebb77f5 Mon Sep 17 00:00:00 2001 From: dragos-mateescu-visma <83346176+dragos-mateescu-visma@users.noreply.github.com> Date: Wed, 9 Jun 2021 16:12:40 +0300 Subject: [PATCH] create config file for changelog generator action --- .github/workflows/changelog-ci-config.json | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/changelog-ci-config.json diff --git a/.github/workflows/changelog-ci-config.json b/.github/workflows/changelog-ci-config.json new file mode 100644 index 000000000..68b91b764 --- /dev/null +++ b/.github/workflows/changelog-ci-config.json @@ -0,0 +1,26 @@ +{ + "changelog_type": "commit_message", + "header_prefix": "Version:", + "commit_changelog": true, + "comment_changelog": true, + "pull_request_title_regex": "^Release", + "version_regex": "v?([0-9]{1,2})+[.]+([0-9]{1,2})+[.]+([0-9]{1,2})\\s\\(\\d{1,2}-\\d{1,2}-\\d{4}\\)", + "group_config": [ + { + "title": "Bug Fixes", + "labels": ["bug", "bugfix"] + }, + { + "title": "Code Improvements", + "labels": ["improvements", "enhancement"] + }, + { + "title": "New Features", + "labels": ["feature"] + }, + { + "title": "Documentation Updates", + "labels": ["docs", "documentation", "doc"] + } + ] +}