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