From d4df2f42166c60708cb1ac973d22c0c2ecd75cbd Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 23 Dec 2019 11:19:31 +0800 Subject: [PATCH 1/2] Update issue templates add issue requests --- .github/ISSUE_TEMPLATE/----.md | 20 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 3 +++ .github/ISSUE_TEMPLATE/bug_report_zh.md | 3 +++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++++++ 4 files changed, 46 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/----.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/----.md b/.github/ISSUE_TEMPLATE/----.md new file mode 100644 index 00000000..96fd0982 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/----.md @@ -0,0 +1,20 @@ +--- +name: 需求反馈 +about: 期望新增或改进实现的需求 +title: '' +labels: Pending +assignees: debugtalk + +--- + +## 背景描述 + +> 重点描述遇到的问题:在什么场景下,HttpRunner 当前的功能特性不能(很好地)实现需求。 + +## 期望的功能特性 + +> 期望 HttpRunner 实现怎样的功能特性。 + +## 示例描述(可选) + +> 结合示例进行描述,可让开发者更准确理解你的需求。 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1afe5757..7448da3a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,9 @@ --- name: Bug report about: Create a report to help us improve +title: '' +labels: '' +assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/bug_report_zh.md b/.github/ISSUE_TEMPLATE/bug_report_zh.md index 5d5d343e..41b00116 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_zh.md +++ b/.github/ISSUE_TEMPLATE/bug_report_zh.md @@ -1,6 +1,9 @@ --- name: Bug 反馈(中文) about: 提交 bug 反馈 +title: '' +labels: '' +assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..f86af7db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: Pending +assignees: debugtalk + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From 92696fdc543f05a778c3a71c208fd6785073f77d Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 23 Dec 2019 11:32:05 +0800 Subject: [PATCH 2/2] update issure templates --- .github/ISSUE_TEMPLATE/----.md | 20 -------------------- .github/ISSUE_TEMPLATE/bug_report.md | 9 ++++----- .github/ISSUE_TEMPLATE/bug_report_zh.md | 7 +++---- .github/ISSUE_TEMPLATE/feature_request.md | 3 +-- .github/ISSUE_TEMPLATE/feature_request_zh.md | 8 ++++++++ 5 files changed, 16 insertions(+), 31 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/----.md diff --git a/.github/ISSUE_TEMPLATE/----.md b/.github/ISSUE_TEMPLATE/----.md deleted file mode 100644 index 96fd0982..00000000 --- a/.github/ISSUE_TEMPLATE/----.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: 需求反馈 -about: 期望新增或改进实现的需求 -title: '' -labels: Pending -assignees: debugtalk - ---- - -## 背景描述 - -> 重点描述遇到的问题:在什么场景下,HttpRunner 当前的功能特性不能(很好地)实现需求。 - -## 期望的功能特性 - -> 期望 HttpRunner 实现怎样的功能特性。 - -## 示例描述(可选) - -> 结合示例进行描述,可让开发者更准确理解你的需求。 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 7448da3a..c14f3efa 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,9 @@ --- name: Bug report about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - +title: BUG +labels: Pending +assignees: debugtalk --- ## Describe the bug @@ -17,7 +16,7 @@ Please complete the following information: - OS: [e.g. macos, Linux, Windows] - Python [e.g. 3.6] - - HttpRunner [e.g. 1.5.11] + - HttpRunner [e.g. 2.1.2] ## Traceback diff --git a/.github/ISSUE_TEMPLATE/bug_report_zh.md b/.github/ISSUE_TEMPLATE/bug_report_zh.md index 41b00116..7879cfc0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report_zh.md +++ b/.github/ISSUE_TEMPLATE/bug_report_zh.md @@ -1,10 +1,9 @@ --- name: Bug 反馈(中文) about: 提交 bug 反馈 -title: '' -labels: '' -assignees: '' - +title: BUG +labels: Pending +assignees: debugtalk --- ## 问题描述 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f86af7db..6d66475a 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,10 +1,9 @@ --- name: Feature request about: Suggest an idea for this project -title: '' +title: FEATURE labels: Pending assignees: debugtalk - --- **Is your feature request related to a problem? Please describe.** diff --git a/.github/ISSUE_TEMPLATE/feature_request_zh.md b/.github/ISSUE_TEMPLATE/feature_request_zh.md index 2441ad7b..882c553d 100644 --- a/.github/ISSUE_TEMPLATE/feature_request_zh.md +++ b/.github/ISSUE_TEMPLATE/feature_request_zh.md @@ -1,3 +1,11 @@ +--- +name: 需求反馈 +about: 期望新增或改进实现的需求 +title: FEATURE +labels: Pending +assignees: debugtalk +--- + ## 背景描述 > 重点描述遇到的问题:在什么场景下,HttpRunner 当前的功能特性不能(很好地)实现需求。