From bb4cea70e53070de53699ba455059d239ce21506 Mon Sep 17 00:00:00 2001 From: linyq Date: Mon, 18 Nov 2024 15:04:11 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=20Pull=20Request=20?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加了 .github/pull_request_template.md 文件,用于指导贡献者提交高质量的 Pull Request。模板包含了以下部分: - PR 类型- 描述 - 相关 Issue - 更改内容 - 测试 - 截图- 检查清单 - 补充说明 这将有助于提高项目的维护效率和代码审查质量。 --- .github/pull_request_template.md | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..06a1197 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,46 @@ +## PR 类型 +请选择一个适当的标签(必选其一): + +- [ ] 破坏性变更 (breaking) +- [ ] 安全修复 (security) +- [ ] 新功能 (feature) +- [ ] Bug修复 (bug) +- [ ] 代码重构 (refactor) +- [ ] 依赖升级 (upgrade) +- [ ] 文档更新 (docs) +- [ ] 翻译相关 (lang-all) +- [ ] 内部改进 (internal) + +## 描述 + + +## 相关 Issue + + +## 更改内容 + + +- +- +- + +## 测试 + + +- [ ] 单元测试 +- [ ] 集成测试 +- [ ] 手动测试 + +## 截图(如果适用) + + +## 检查清单 + +- [ ] 我的代码遵循项目的代码风格 +- [ ] 我已经添加了必要的测试 +- [ ] 我已经更新了相关文档 +- [ ] 我的更改不会引入新的警告 +- [ ] PR 标题清晰描述了更改内容 + +## 补充说明 + \ No newline at end of file