From 768e9a15666189ec61224381a8c74574a746e7c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:05:17 +0300 Subject: [PATCH] fix(releaserc): add more types (#189) Co-authored-by: Nikita Almanov <131481562+nikkeyl@users.noreply.github.com> --- .releaserc.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index 40e848d..53c38a4 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -60,12 +60,16 @@ { "presetConfig": { "types": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "refactor", "section": "Code Refactoring" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "revert", "section": "Reverts" }, { "type": "docs", "section": "Documentation" }, { "type": "style", "section": "Styles" }, - { "type": "chore", "section": "Miscellaneous Chores" }, - { "type": "refactor", "section": "Code Refactoring" }, { "type": "test", "section": "Tests" }, { "type": "build", "section": "Build System" }, + { "type": "chore", "section": "Miscellaneous Chores" }, { "type": "ci", "section": "Continuous Integration" } ] },