From 933b7f0cd9e20beb514bb3531b44cec7c4e1cec6 Mon Sep 17 00:00:00 2001 From: pany <939630029@qq.com> Date: Tue, 19 Nov 2024 14:45:40 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E7=B2=BE=E7=AE=80=20commit=20=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.zh-CN.md | 19 ++++++++----------- changelogithub.config.json | 10 ++++------ 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/README.zh-CN.md b/README.zh-CN.md index 61d6349..6acea38 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -113,19 +113,16 @@ pnpm test ## Git 提交规范参考 -- `feat` 增加新的业务功能 -- `fix` 修复业务问题/BUG -- `perf` 优化性能 -- `style` 更改代码风格, 不影响运行结果 +- `feat` 新功能 +- `fix` 修复错误 +- `perf` 优化 - `refactor` 重构代码 +- `docs` 文档和注释 +- `types` 类型相关 +- `test` 单测相关 +- `ci` 持续集成、工作流 - `revert` 撤销更改 -- `test` 测试相关, 不涉及业务代码的更改 -- `docs` 文档和注释相关 -- `chore` 更新依赖/修改脚手架配置等琐事 -- `workflow` 工作流改进 -- `ci` 持续集成相关 -- `types` 类型定义文件更改 -- `wip` 开发中 +- `chore` 琐事(更新依赖、修改配置等) ## 项目预览图 diff --git a/changelogithub.config.json b/changelogithub.config.json index b87fa4e..b6bdd06 100644 --- a/changelogithub.config.json +++ b/changelogithub.config.json @@ -3,14 +3,12 @@ "feat": { "title": "Feat" }, "fix": { "title": "Fix" }, "perf": { "title": "Perf" }, - "style": { "title": "Style" }, "refactor": { "title": "Refactor" }, - "revert": { "title": "Revert" }, - "test": { "title": "Test" }, "docs": { "title": "Docs" }, - "chore": { "title": "Chore" }, - "workflow": { "title": "Workflow" }, + "types": { "title": "Types" }, + "test": { "title": "Test" }, "ci": { "title": "CI" }, - "types": { "title": "Types" } + "revert": { "title": "Revert" }, + "chore": { "title": "Chore" } } }