From b284f1e1d23d7d56883ca1ef66de3b820f35866b Mon Sep 17 00:00:00 2001 From: hamster1963 <1410514192@qq.com> Date: Mon, 4 Nov 2024 15:06:42 +0800 Subject: [PATCH] docs: add changelog config --- changelogithub.config.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 changelogithub.config.json diff --git a/changelogithub.config.json b/changelogithub.config.json new file mode 100644 index 0000000..b410eb3 --- /dev/null +++ b/changelogithub.config.json @@ -0,0 +1,15 @@ +{ + "types": { + "feat": { "title": "🚀 Features" }, + "fix": { "title": "🔧 Bug Fixes" }, + "docs": { "title": "📚 Documentation" }, + "style": { "title": "💄 Styles" }, + "refactor": { "title": "🔨 Refactor" }, + "perf": { "title": "🏎 Performance" }, + "test": { "title": "🚨 Tests" }, + "build": { "title": "🛠 Build" }, + "ci": { "title": "👷 CI" }, + "chore": { "title": "🛗 Chore" }, + "revert": { "title": "⏪ Revert" } + } +}