From 4ee92268bf1b05d61c73c126610ffae84e41e56c Mon Sep 17 00:00:00 2001 From: RickCole Date: Mon, 17 Aug 2020 20:39:51 +0800 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 27 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 20 +++++++++++++++++ .github/ISSUE_TEMPLATE/usage-question.md | 21 ++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/usage-question.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..73f26013 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,27 @@ +--- +name: Bug report +about: 报告问题,以帮助我们做的更好 +title: '' +labels: need confirm +assignees: '' + +--- + +#### 描述问题: +请用一段清晰简洁的文字描述问题是什么... + +#### 截图或视频: +可以的话,尽可能提供截图或视频来补充描述你的问题... + +#### 如何复现(请务必完整填写下面内容): + +1. 你是如何使用 amis 的? +`sdk`、`npm` 或`其他`... + +2. 出现问题的完整 `amis schema` 代码: +``` +code here... +``` + +3. 操作步骤 +简单描述一下复现的操作步骤... diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..a1b75c06 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: 为我们提出一个新的想法 +title: '' +labels: enhancement +assignees: '' + +--- + +#### 这个功能是关联于某个问题吗: +请用一段简单清晰的文字描述你的问题,例如:因为我没办法实现xxx... + +#### 描述一下你预期的解决方案: +请简单描述你想达到的效果... + +#### 描述一下其他可接受方案: +请简单描述其他你可以介绍的效果... + +#### 任何附加信息: +请添加任何可以补充说明上述问题的材料,例如图片或视频等... diff --git a/.github/ISSUE_TEMPLATE/usage-question.md b/.github/ISSUE_TEMPLATE/usage-question.md new file mode 100644 index 00000000..2f6e8483 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/usage-question.md @@ -0,0 +1,21 @@ +--- +name: Usage question +about: amis 使用方法问题 +title: '' +labels: document +assignees: '' + +--- + +#### 实现场景: +请简单描述你想要实现的原始场景,例如:我想要实现xxx的功能... + +#### 存在的问题: +请简单描述你现在遇到的不符合预期的问题... + +#### 当前方案: +请描述你当前方案的完整的 amis schema 代码... + +``` +code here... +```