From a86541a288b13bf5aae007472f3732313429f285 Mon Sep 17 00:00:00 2001 From: zhanghailiang Date: Mon, 13 Jan 2020 09:24:13 +0800 Subject: [PATCH] Issue/PR: add templete for issue and PR It is convenient for communication by using this templete. Signed-off-by: zhanghailiang --- .gitee/ISSUE_TEMPLATE.en.md | 29 +++++++++++++++++++++++++++ .gitee/ISSUE_TEMPLATE.zh-CN.md | 28 ++++++++++++++++++++++++++ .gitee/PULL_REQUEST_TEMPLATE.en.md | 7 +++++++ .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md | 8 ++++++++ 4 files changed, 72 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE.en.md create mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md create mode 100644 .gitee/PULL_REQUEST_TEMPLATE.en.md create mode 100644 .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md diff --git a/.gitee/ISSUE_TEMPLATE.en.md b/.gitee/ISSUE_TEMPLATE.en.md new file mode 100644 index 00000000..5866a353 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.en.md @@ -0,0 +1,29 @@ +### Bug Description: +``` +xxx +xxx +``` + +### How reproducible: +100% +### Steps to Reproduce: +``` +1. xxx +2. xxx +``` +### Actual results: + +### Expected results: + +### Additional info: +``` +** Qemu Command line**: +xxx + +**Environment**: +- Version: +- OS (e.g. from /etc/os-release): +- Kernel (e.g. `uname -a`): +- Install tools: +- Others: +``` diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md new file mode 100644 index 00000000..7ce22fee --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.zh-CN.md @@ -0,0 +1,28 @@ +### 问题现象描述 +``` +xxx +xxx +``` +### 复现概率 +100%必现(偶现) +### 复现步骤 +``` +1. xxx +2. xxx +``` + +### 发生结果: + +### 期望结果: + + +### 补充说明: +``` +**Qemu命令行**: + +**环境情况**: +- 版本: +- 操作系统版本 (e.g. from /etc/os-release): +- 内核版本 (e.g. `uname -a`): +- 其它: +``` diff --git a/.gitee/PULL_REQUEST_TEMPLATE.en.md b/.gitee/PULL_REQUEST_TEMPLATE.en.md new file mode 100644 index 00000000..77691db3 --- /dev/null +++ b/.gitee/PULL_REQUEST_TEMPLATE.en.md @@ -0,0 +1,7 @@ + + +**[feature/bugfix] What this PR does/title**: + +**Which issue this PR fixes** *(optional, in `fixes #(, fixes #, ...)` format, will close that issue when PR gets merged)*: fixes # + +**Special notes for your reviewer**: diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md new file mode 100644 index 00000000..63d7306c --- /dev/null +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -0,0 +1,8 @@ + + +**[feature/bugfix]PR功能描述标题**: + +**该PR关联的issue** *(格式为fixes #, 或者resolves #)*: fixes # + +**希望检视人员了解**: + -- Gitee