diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..0086358db1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/questions.yml b/.github/ISSUE_TEMPLATE/questions.yml new file mode 100644 index 0000000000..5a3b8a2cee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/questions.yml @@ -0,0 +1,18 @@ +name: Ask Questions | 提问 +description: Please describe your problem. | 请描述您的问题。 +labels: ["question"] +assignees: [] + +body: + - type: markdown + attributes: + value: | + Please answer these questions before you submit the desired feature. | 请在您提交期望的功能之前,回答以下这些问题 + + - type: textarea + attributes: + label: Your Questions + description: Please describe your problem. | 请描述您的问题。 + placeholder: I have a question... + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/topics.yml b/.github/ISSUE_TEMPLATE/topics.yml new file mode 100644 index 0000000000..cd95f932c8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/topics.yml @@ -0,0 +1,79 @@ +name: 提交选题 +description: 提交一个选题 +# title: "" +labels: [] +assignees: [] +body: + - type: markdown + attributes: + value: | + 标题请使用 **`[选题类型] 文章标题`** 格式,文章标题请使用单词首字母 **大写** 的形式,选题类型和文章标题中间有一个 **空格**。 + 选题类型包括: + + - 手动选题 + - 推荐选题 + + 完整示例: + - [推荐选题] The Lost Art of the Makefile + - [推荐选题] The Lost Art of the Makefile + - [手动选题] Linus Torvalds Uses Apple MacBook Hardware to Release Linux Kernel 5.19 + - [手动选题] Wow! Torvalds Modified Fedora Linux to Run on his Apple M2 Macbook + + - type: textarea + id: title + attributes: + label: 原文标题 + description: 填写原文章的标题 + placeholder: 原文标题 + validations: + required: true + + - type: textarea + id: url + attributes: + label: 原文链接地址 + description: 填写原文章的链接地址 + placeholder: 原文链接地址 + validations: + required: true + + - type: checkboxes + id: terms + attributes: + label: 版权协议 + description: 填写原文章的版权协议 + options: + - label: CC-SA-BY + - label: 其它公域许可证 + - label: 已获取作者授权 + + - type: textarea + id: reason + attributes: + label: 推荐理由 + description: 填写你的推荐理由 + placeholder: + validations: + required: false + + - type: dropdown + id: difficulty + attributes: + label: 文章难度 + description: 选择文章的难度 + multiple: false + options: + - 困难 + - 一般 + - 容易 + + - type: dropdown + id: category + attributes: + label: 文章分类 + description: 选择文章的分类 + multiple: false + options: + - 新闻(news) + - 观点(talk) + - 技术(tech)