Skip to content

Commit

Permalink
Merge pull request #185 from VictorZeng/issue_pr_template
Browse files Browse the repository at this point in the history
Add Github ISSUE & PR Templates
  • Loading branch information
wenshao authored May 7, 2022
2 parents 79f2364 + 61d3ab8 commit e17793d
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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
//可在此输入示例代码
```

### 期待的正确结果
*对您期望发生的结果进行清晰简洁的描述。*


### 相关日志输出
*请复制并粘贴任何相关的日志输出。*


#### 附加信息
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: 需求建议
about: 提出针对本项目的想法和建议
title: '[FEATURE]'
labels: 'enhancement'
assignees: ''

---

### 请描述您的需求或者改进建议
*对您想要需求或建议的清晰简洁的描述。*


### 请描述你建议的实现方案
*对您想要需求或建议的实现方案的详细描述。*


### 描述您考虑过的替代方案
*对您考虑过的任何替代解决方案或功能的描述。*


#### 附加信息
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*

11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/problem_support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: 问题支持
about: 提出针对本项目使用及其他方面的问题
title: '[QUESTION]'
labels: 'question'
assignees: ''

---

### 请描述您的问题
*询问有关本项目的使用和其他方面的相关问题。*
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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.

0 comments on commit e17793d

Please sign in to comment.