From 8044ea441ae9433d7ac82befecefb9a55439f9a6 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sat, 17 Oct 2020 19:56:31 +0200 Subject: [PATCH] - introduce `other` category for library changelog --- .github/workflows/ci.yml | 1 + configs/configuration_repo.json | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 configs/configuration_repo.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f84449..6f6be4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,7 @@ jobs: id: github_release uses: mikepenz/release-changelog-builder-action@main with: + configuration: "configs/configuration_repo.json" toTag: ${{ steps.tag_version.outputs.VERSION }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/configs/configuration_repo.json b/configs/configuration_repo.json new file mode 100644 index 0000000..f85ca02 --- /dev/null +++ b/configs/configuration_repo.json @@ -0,0 +1,20 @@ +{ + "categories": [ + { + "title": "## ๐Ÿš€ Features", + "labels": ["feature"] + }, + { + "title": "## ๐Ÿ› Fixes", + "labels": ["fix"] + }, + { + "title": "## ๐Ÿงช Tests", + "labels": ["test"] + }, + { + "title": "## ๐Ÿ’ฌ Other", + "labels": ["other"] + } + ] +} \ No newline at end of file