From 3aaa92d076da1aa4a1a8c6b177c50a338ae6466e Mon Sep 17 00:00:00 2001 From: Oleg Koval Date: Sat, 5 Oct 2019 02:04:05 +0200 Subject: [PATCH] feat(type): add chore type --- release.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release.config.js b/release.config.js index f9fd3b4..597f023 100644 --- a/release.config.js +++ b/release.config.js @@ -34,6 +34,8 @@ customTransform = (commit, context) => { commit.type = `Build System`; } else if (commit.type === `ci`) { commit.type = `Continuous Integration`; + } else if (commit.type === `chore`) { + commit.type = `Chores`; } else { return; }