-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from VictorZeng/issue_pr_template
Add Github ISSUE & PR Templates
- Loading branch information
Showing
4 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: BUG 提交 | ||
about: 提交问题缺陷帮助我们更好的改进 | ||
title: '[BUG]' | ||
labels: 'bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### 问题描述 | ||
*简要描述您碰到的问题。* | ||
|
||
|
||
### 环境信息 | ||
*请填写以下信息:* | ||
|
||
- OS信息: [e.g.:CentOS 8.4.2105 4Core 3.10GHz 16 GB] | ||
- JDK信息: [e.g.:Openjdk 1.8.0_312] | ||
- 版本信息:[e.g.:Fastjson2 2.x.x] | ||
|
||
|
||
### 重现步骤 | ||
*如何操作可以重现该问题:* | ||
|
||
1. 使用 `xxx.xxx` 方法 | ||
2. 输入 `...` 数据 | ||
3. 出现 `...` 错误 | ||
```java | ||
//可在此输入示例代码 | ||
``` | ||
|
||
### 期待的正确结果 | ||
*对您期望发生的结果进行清晰简洁的描述。* | ||
|
||
|
||
### 相关日志输出 | ||
*请复制并粘贴任何相关的日志输出。* | ||
|
||
|
||
#### 附加信息 | ||
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: 需求建议 | ||
about: 提出针对本项目的想法和建议 | ||
title: '[FEATURE]' | ||
labels: 'enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### 请描述您的需求或者改进建议 | ||
*对您想要需求或建议的清晰简洁的描述。* | ||
|
||
|
||
### 请描述你建议的实现方案 | ||
*对您想要需求或建议的实现方案的详细描述。* | ||
|
||
|
||
### 描述您考虑过的替代方案 | ||
*对您考虑过的任何替代解决方案或功能的描述。* | ||
|
||
|
||
#### 附加信息 | ||
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: 问题支持 | ||
about: 提出针对本项目使用及其他方面的问题 | ||
title: '[QUESTION]' | ||
labels: 'question' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### 请描述您的问题 | ||
*询问有关本项目的使用和其他方面的相关问题。* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### What this PR does / why we need it? | ||
|
||
|
||
|
||
### Summary of your change | ||
|
||
|
||
|
||
#### Please indicate you've done the following: | ||
|
||
- [ ] Made sure tests are passing and test coverage is added if needed. | ||
- [ ] Made sure commit message follow the rule of [Conventional Commits specification](https://www.conventionalcommits.org/). | ||
- [ ] Considered the docs impact and opened a new docs issue or PR with docs changes if needed. |