From cf74c1a93558eb905d79981b11ad78b71d485e2b Mon Sep 17 00:00:00 2001 From: kenneth Date: Fri, 16 Jun 2023 02:49:09 +0000 Subject: [PATCH] !1503 add issue template * add issue template --- .gitee/ISSUE_TEMPLATE/bug-report.yml | 46 +++++++++++++++++++++++ .gitee/ISSUE_TEMPLATE/config.yml | 5 +++ .gitee/ISSUE_TEMPLATE/feature-request.yml | 21 +++++++++++ .gitee/ISSUE_TEMPLATE/question.yml | 15 ++++++++ 4 files changed, 87 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .gitee/ISSUE_TEMPLATE/config.yml create mode 100644 .gitee/ISSUE_TEMPLATE/feature-request.yml create mode 100644 .gitee/ISSUE_TEMPLATE/question.yml diff --git a/.gitee/ISSUE_TEMPLATE/bug-report.yml b/.gitee/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..1599c9f --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,46 @@ +name: Bug 反馈 +description: 当您发现了一个缺陷,需要向社区反馈时,请使用此模板。 +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + 感谢对OpenHarmony社区的支持与关注,欢迎反馈缺陷。 + - type: textarea + attributes: + label: 发生了什么问题? + description: 提供尽可能多的信息描述产生了什么问题。 + placeholder: "" + validations: + required: true + - type: textarea + attributes: + label: 期望行为是什么? + description: 描述期望的行为应该是什么样子的。 + placeholder: "" + validations: + required: true + - type: textarea + attributes: + label: 如何复现该缺陷 + description: 提供尽可能多的信息描述如何复现该缺陷。 + validations: + required: true + - type: textarea + attributes: + label: 其他补充信息 + description: 补充下其他您认为需要提供的信息。 + validations: + required: false + - type: checkboxes + attributes: + label: 版本或分支信息 + description: 在哪些版本、分支存在该缺陷的? + options: + - label: master + - label: Release 3.2 + - label: Release 3.1 + - label: Release 3.0 + validations: + required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/config.yml b/.gitee/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ee6625f --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: 维护代码仓Committer信息 + url: http://ci.openharmony.cn/workbench/sig/repositoryManagement + about: 如果您需要维护代码仓Committer信息,请访问CI Portal门户站点仓库管理页面。 \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature-request.yml b/.gitee/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..e7fba45 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,21 @@ +name: 需求建议 +description: 您需要反馈一个需求建议时,使用此模板反馈 +title: "[需求建议]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + 感谢提出建议,我们将仔细考虑! + - type: textarea + attributes: + label: 您需要什么功能? + description: 请描述下您需要的功能是什么?社区会综合考虑是否支持您提出的需求。 + validations: + required: true + - type: textarea + attributes: + label: 为什么需要该功能? + description: 请描述下该需求的价值,应用场景等。 + validations: + required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/question.yml b/.gitee/ISSUE_TEMPLATE/question.yml new file mode 100644 index 0000000..5c0305c --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,15 @@ +name: 问题咨询 +description: 如果您对OpenHarmony社区有疑问,欢迎反馈咨询。 +title: "[问题咨询]: " +labels: ["question"] +body: + - type: markdown + attributes: + value: | + 感谢提出问题,我们将安排人员答复! + - type: textarea + attributes: + label: 问题描述 + description: 请描述下您的问题 + validations: + required: true -- GitLab