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" } } }