Update PR template file

Co-authored-by: dumb<liuermeng2@huawei.com>

# message auto-generated for no-merge-commit merge:
!950 merge main into main

Update PR template file

Created-by: dumb
Commit-by: dumb
Merged-by: liwei3013
Description: <!--  Thanks for sending a pull request!  Here are some tips for you:

1) If this is your first time, please read our contributor guidelines: https://gitee.com/mindspore/mindspore/blob/master/CONTRIBUTING.md

2) If you want to contribute your code but don't know who will review and merge, please add label `mindspore-assistant` to the pull request, we will find and do it as soon as possible.
-->

**What type of PR is this?**
<!--
选择下面一种标签替换下方 `/kind <label>`,可选标签类型有:
- /kind bug
- /kind task
- /kind feature
- /kind refactor
- /kind clean_code
如PR描述不符合规范,修改PR描述后需要/check-pr重新检查PR规范。
-->
/kind <label>

**Self-checklist**:(**请自检,在[ ]内打上x,我们将检视你的完成情况,否则会导致pr无法合入**)

+ - [ ] **设计**:PR对应的方案是否已经经过Maintainer评审,方案检视意见是否均已答复并完成方案修改
+ - [ ] **测试**:PR中的代码是否已有UT/ST测试用例进行充分的覆盖,新增测试用例是否随本PR一并上库或已经上库
+ - [ ] **验证**:PR描述信息中是否已包含对该PR对应的Feature、Refactor、Bugfix的预期目标达成情况的详细验证结果描述
+ - [ ] **接口**:是否涉及对外接口变更,相应变更已得到接口评审组织的通过,API对应的注释信息已经刷新正确
+ - [ ] **文档**:是否涉及官网文档修改,如果涉及请及时提交资料到Doc仓

<!-- **Special notes for your reviewers**: -->
<!-- + - [ ] 是否导致无法前向兼容 -->
<!-- + - [ ] 是否涉及依赖的三方库变更 -->

See merge request: openHiTLS/openhitls!950

Signed-off-by: Dongjianwei001 <dongjianwei1@huawei.com>
This commit is contained in:
dumb
2025-12-29 10:09:06 +08:00
committed by Dongjianwei001
parent 1352dcbc9d
commit 4619fa492a
10 changed files with 3 additions and 97 deletions
View File
@@ -0,0 +1,59 @@
name: 🐞 Bug report
description: Create a report to help us reproduce and fix the bug
title: "[Bug]: "
labels: ["bug"]
body:
- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: 1. 我已经搜索过相关问题,但没有得到预期的帮助. (https://gitcode.com/openHiTLS/openhitls/issues)
- label: 2. 最新版本中该错误尚未修复.
- label: 3. 请注意,如果您提交的Bug描述缺少相应的环境信息和最小可复现的demo,我们将很难复现和解决该问题,从而降低收到反馈的可能性,甚至该问题将被关闭.
validations:
required: true
- type: textarea
attributes:
label: 🐞 问题详细描述
description: |
请提供关于错误是什么的清晰而简洁的描述。
请添加一个最简洁的示例,以便我们通过运行代码重现错误。代码片段尽可能简洁(最小化)非常重要,因此请花时间精简任何不相关的代码,以帮助我们高效调试。您的示例应完全独立,并且不依赖于任何需要下载的构件。**否则,该问题将被关闭**
请粘贴或描述您观察到的结果,如果您发现错误,请粘贴错误消息,包括异常的**完整**栈信息,将错误信息包含在```` ```triple quotes blocks``` ````内.
placeholder: |
对 bug 的清晰、简洁的描述.
```python
# Sample code to reproduce the problem
```
```
The error message you got, with the full traceback and the error logs.
```
validations:
required: true
- type: textarea
attributes:
label: 详细的环境信息描述
description: 请提供必要的全部环境信息,包括所有的软件、硬件、驱动等信息. **否则,该问题将被关闭**
placeholder: "包括但不限于该问题出现所依赖的软件及版本、硬件、驱动等信息,尽可能的详细."
validations:
required: true
- type: textarea
attributes:
label: 其他辅助信息
description: 任何其他有助于我们定位问题的信息,请您提供
placeholder: "Any other things you would like to mention."
- type: textarea
attributes:
label: 版本信息
description: 如果涉及多个版本,请悉数告知我们对应的版本号信息,以方便我们复现问题
validations:
required: true
- type: markdown
attributes:
value: >
Thanks for contributing 🎉!
@@ -0,0 +1,28 @@
name: 📚 Documentation
description: Report an issue related to https://gitcode.com/openHiTLS/openhitls
title: "[Doc]: "
labels: ["documentation"]
body:
- type: textarea
attributes:
label: 📚 文档问题描述
description: >
A clear and concise description of what content in https://gitcode.com/openHiTLS/openhitls is an issue.
validations:
required: true
- type: textarea
attributes:
label: 改进与修复建议
description: >
Tell us how we could improve the documentation in this regard.
- type: textarea
attributes:
label: 版本信息
description: 如果涉及多个版本,请悉数告知我们对应的版本号信息,以方便我们复现问题
validations:
required: true
- type: markdown
attributes:
value: >
Thanks for contributing 🎉!
@@ -0,0 +1,46 @@
name: 🚀 Feature request
description: Submit a proposal/request for a new openHiTLS feature
title: "[Feature]: "
labels: ["feature"]
body:
- type: textarea
attributes:
label: 🚀 背景描述
description: >
A clear and concise description of the feature proposal. Please outline the motivation for the proposal. Is your feature request related to a specific problem? e.g., *"I'm working on X and would like Y to be possible"*. If this is related to another Gitee issue, please link here too.
validations:
required: true
- type: textarea
attributes:
label: 设计思路
description: >
A description of any alternative solutions or features you've considered, if any.
validations:
required: true
- type: textarea
attributes:
label: 涉及到的对外API
description: >
描述该特性是否会有对外API的增加与变更情况的发生,以及变更可能会造成的周边影响.
- type: textarea
attributes:
label: 与其他模块的相关性描述
description: >
描述与其他模块存在的可能关联性,以方便补充对应的场景验证.
- type: textarea
attributes:
label: 测试设计与测试计划
description: >
详细描述如何开展测试验证,以保证该特性的能力得到充分的验证,包括到不限于功能、性能、可靠性、安全等.
validations:
required: true
- type: textarea
attributes:
label: 其他信息
description: >
添加例如辅助信息、场景等内容.
- type: markdown
attributes:
value: >
Thanks for contributing 🎉!
+9
View File
@@ -0,0 +1,9 @@
name: Blank issue.
description: Create a new issue from scratch.
body:
- type: textarea
attributes:
label: Add a description
validations:
required: true
+4
View File
@@ -0,0 +1,4 @@
contact_links:
- name: Questions
url: https://gitcode.com/openHiTLS/openhitls/discussions
about: Ask questions and discuss with other openHiTLS community members
+32
View File
@@ -0,0 +1,32 @@
<!-- Thanks for sending a pull request! Here are some tips for you:
1) If this is your first time, please read our contributor guidelines: https://gitcode.com/openHiTLS/openhitls/wiki/FAQ-%E7%A4%BE%E5%8C%BA%E9%9C%80%E6%B1%82%E8%B4%A1%E7%8C%AE%E6%B5%81%E7%A8%8B.md
-->
**What does this PR do / why do we need it**:
* Need to describe clearly
**Which issue(s) this PR fixes**:
<!--
*Automatically closes linked issue when PR is merged.
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->
Fixes #
**What scenarios were tested, and what were the verification resultsFunction, performance, reliability, etc.**
* Need to describe clearly
**Self-checklist**:**Please check carefully,and mark an x in the [] brackets. We will review your completion status.**
+ - [ ] **Test**: Has the code in the PR been fully covered by UT/ST test cases, and have the newly added test cases been uploaded to the repository along with this PR or already uploaded.
+ - [ ] **Interface**: Does it involve changes to external interfaces? The corresponding changes have been approved by the interface review organization, and the annotation information for the API has been correctly refreshed.
+ - [ ] **Document**: Does it involve modifications to the official website documentation? If so, please submit the materials to the Doc repository in a timely manner.
<!-- **Special notes for your reviewers**: -->
<!-- + - [ ] Whether it causes forward compatibility failure -->
<!-- + - [ ] Whether the dependent third-party library change is involved -->
+33
View File
@@ -0,0 +1,33 @@
<!-- Thanks for sending a pull request! Here are some tips for you:
1) If this is your first time, please read our contributor guidelines: https://gitcode.com/openHiTLS/openhitls/wiki/FAQ-%E7%A4%BE%E5%8C%BA%E9%9C%80%E6%B1%82%E8%B4%A1%E7%8C%AE%E6%B5%81%E7%A8%8B.md
-->
**What does this PR do / why do we need it**:
---
**Which issue(s) this PR fixes**:
<!--
注意:在下方 #号 后仅输入issue编号或SR/AR编号,粘贴issue链接无效。
如PR描述不符合规范,修改PR描述后需要/check-pr重新检查PR规范。
-->
Fixes #
---
**Test Plan and Test resultWhat scenarios were tested, and what were the verification resultsFunction, performance, reliability, etc.**
---
**Self-checklist**:(**请自检,在[ ]内打上x**)
+ - [ ] **测试**:PR中的代码是否已有UT/ST测试用例进行充分的覆盖,新增测试用例是否随本PR一并上库或已经上库
+ - [ ] **接口**:是否涉及对外接口变更,相应变更已得到接口评审组织的通过,API对应的注释信息已经刷新正确
+ - [ ] **文档**:是否涉及官网文档修改,如果涉及请及时提交资料到Doc仓
<!-- **Special notes for your reviewers**: -->
<!-- + - [ ] 是否导致无法前向兼容 -->
<!-- + - [ ] 是否涉及依赖的三方库变更 -->