121 lines
2.6 KiB
Diff
121 lines
2.6 KiB
Diff
From edcab5958f38a7924700fa39b9142ad21062c79b Mon Sep 17 00:00:00 2001
|
|
From: wujing <wujing50@huawei.com>
|
|
Date: Wed, 24 Jun 2020 11:11:45 +0800
|
|
Subject: [PATCH 03/12] Add Pull Request Template And Issue Template
|
|
|
|
Signed-off-by: wujing <wujing50@huawei.com>
|
|
---
|
|
.gitee/ISSUE_TEMPLATE.en.md | 13 +++++++++++++
|
|
.gitee/ISSUE_TEMPLATE.zh-CN.md | 16 ++++++++++++++++
|
|
.gitee/PULL_REQUEST_TEMPLATE.en.md | 16 ++++++++++++++++
|
|
.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md | 15 +++++++++++++++
|
|
.gitignore | 3 +++
|
|
5 files changed, 63 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 0000000..a00edf1
|
|
--- /dev/null
|
|
+++ b/.gitee/ISSUE_TEMPLATE.en.md
|
|
@@ -0,0 +1,13 @@
|
|
+## [DT/Function Test/Code Review]
|
|
+
|
|
+### What version of iSulad and which branch are you using?
|
|
+
|
|
+
|
|
+### What operating system (Linux, Windows,...) and version? What compiler are you using?
|
|
+
|
|
+
|
|
+### What did you do and what did you see?
|
|
+
|
|
+
|
|
+### What did you expect to see?
|
|
+
|
|
diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md
|
|
new file mode 100644
|
|
index 0000000..aac2216
|
|
--- /dev/null
|
|
+++ b/.gitee/ISSUE_TEMPLATE.zh-CN.md
|
|
@@ -0,0 +1,16 @@
|
|
+## 【开发者测试/功能测试/代码检视】
|
|
+
|
|
+### iSula版本信息及项目分支
|
|
+
|
|
+
|
|
+
|
|
+### 操作系统版本及编译器版本
|
|
+
|
|
+
|
|
+
|
|
+### 问题描述及重现步骤
|
|
+
|
|
+
|
|
+
|
|
+### 预期结果
|
|
+
|
|
diff --git a/.gitee/PULL_REQUEST_TEMPLATE.en.md b/.gitee/PULL_REQUEST_TEMPLATE.en.md
|
|
new file mode 100644
|
|
index 0000000..911ad96
|
|
--- /dev/null
|
|
+++ b/.gitee/PULL_REQUEST_TEMPLATE.en.md
|
|
@@ -0,0 +1,16 @@
|
|
+### Description
|
|
+
|
|
+### Related Issue
|
|
+
|
|
+### Type of change
|
|
+
|
|
+- Bug Fix
|
|
+- New Feature
|
|
+- Breaking Change
|
|
+- Code Refactoring
|
|
+- Interface Change
|
|
+- Documentation Update
|
|
+
|
|
+### Test Case
|
|
+
|
|
+### Validation Report
|
|
diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
|
|
new file mode 100644
|
|
index 0000000..a842cab
|
|
--- /dev/null
|
|
+++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
|
|
@@ -0,0 +1,15 @@
|
|
+### 描述
|
|
+
|
|
+### 关联issue
|
|
+
|
|
+### 修改类型
|
|
+
|
|
+- 问题修复
|
|
+- 新特性开发
|
|
+- 代码重构
|
|
+- 接口变更
|
|
+- 文档更新
|
|
+
|
|
+### 测试用例
|
|
+
|
|
+### 验证报告
|
|
diff --git a/.gitignore b/.gitignore
|
|
index 11cbe8e..7e1bcf6 100644
|
|
--- a/.gitignore
|
|
+++ b/.gitignore
|
|
@@ -2,7 +2,10 @@ build
|
|
*.pyc
|
|
.deps
|
|
.dirstamp
|
|
+.clangd
|
|
GPATH
|
|
GRTAGS
|
|
GTAGS
|
|
iSula-libutils
|
|
+compile_commands.json
|
|
+tags
|
|
--
|
|
2.20.1
|
|
|