From e76b55c6de425cc3514f81d25b827d8a100f8fca Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Mon, 30 Nov 2020 12:47:11 -0800 Subject: [PATCH] style: remove confusing emojis from changelog.config.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Closes: https://github.com/hyperledger/cactus/pull/337#discussion_r531509766 Signed-off-by: Peter Somogyvari --- changelog.config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/changelog.config.js b/changelog.config.js index 1c6ea8173d..36c6e7d5b8 100644 --- a/changelog.config.js +++ b/changelog.config.js @@ -30,62 +30,62 @@ module.exports = { build: { description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)", - emoji: "🏗", + emoji: "", value: "build", }, chore: { description: "Build process or auxiliary tool changes", - emoji: "🤖", + emoji: "", value: "chore", }, ci: { description: "CI related changes", - emoji: "🎡", + emoji: "", value: "ci", }, docs: { description: "Documentation only changes", - emoji: "✏️", + emoji: "", value: "docs", }, feat: { description: "A new feature", - emoji: "🎸", + emoji: "", value: "feat", }, fix: { description: "A bug fix", - emoji: "🐛", + emoji: "", value: "fix", }, perf: { description: "A code change that improves performance", - emoji: "⚡️", + emoji: "", value: "perf", }, refactor: { description: "A code change that neither fixes a bug or adds a feature", - emoji: "💡", + emoji: "", value: "refactor", }, release: { description: "Create a release commit", - emoji: "🏹", + emoji: "", value: "release", }, revert: { description: "Reverts a previous commit", - emoji: "⏪", + emoji: "", value: "revert", }, style: { description: "Markup, white-space, formatting, missing semi-colons...", - emoji: "💄", + emoji: "", value: "style", }, test: { description: "Adding missing tests", - emoji: "💍", + emoji: "", value: "test", }, },