From 6467ccfe53dfe9bfb472d153931c229b52040e88 Mon Sep 17 00:00:00 2001 From: TwelveT <2471835953@qq.com> Date: Fri, 11 Aug 2023 12:52:32 +0800 Subject: [PATCH] Report a bug to help us improve twelvet --- .github/funding.yml | 14 ++++++ .github/issue_template/bug_report.yml | 57 ++++++++++++++++++++++ .github/issue_template/config.yml | 5 ++ .github/issue_template/feature_request.yml | 22 +++++++++ 4 files changed, 98 insertions(+) create mode 100644 .github/funding.yml create mode 100644 .github/issue_template/bug_report.yml create mode 100644 .github/issue_template/config.yml create mode 100644 .github/issue_template/feature_request.yml diff --git a/.github/funding.yml b/.github/funding.yml new file mode 100644 index 00000000..24e41e45 --- /dev/null +++ b/.github/funding.yml @@ -0,0 +1,14 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: twelvet +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: https://twelvet.cn + + ISSUE_TEMPLATE diff --git a/.github/issue_template/bug_report.yml b/.github/issue_template/bug_report.yml new file mode 100644 index 00000000..f56c560f --- /dev/null +++ b/.github/issue_template/bug_report.yml @@ -0,0 +1,57 @@ +name: 🐛 Bug report +description: Report a bug to help us improve twelvet +title: "[Bug]: " +labels: [bug] +assignees: + - twelvet-s +body: + - type: input + id: twelvet + attributes: + label: twelvet 版本 + description: 请输入您当前使用的项目版本? + placeholder: 3.0.0 + validations: + required: true + - type: input + id: node + attributes: + label: Node Version + description: 请输入您当前使用的NODE版本? + placeholder: v16.15.0 + validations: + required: true + - type: input + id: java + attributes: + label: JDK Version + description: 请输入您当前使用的GOLANG版本? + placeholder: JDK 17 + validations: + required: true + - type: dropdown + id: reappearance + attributes: + label: 是否依旧存在 + description: 是否可以在master分支复现此bug? + options: + - 可以 + - 不可以 + - 未测试 + validations: + required: true + - type: textarea + id: desc + attributes: + label: bug描述 + description: 请简要描述bug以及复现过程. + placeholder: | + 1. 首先... + 2. 然后... + validations: + required: true + - type: textarea + id: advise + attributes: + label: 修改建议 + description: 您有好的建议或者修改方案可以提供给我们。 diff --git a/.github/issue_template/config.yml b/.github/issue_template/config.yml new file mode 100644 index 00000000..55b090d6 --- /dev/null +++ b/.github/issue_template/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Document + url: https://twelvet.cn/docs/ + about: If you have any questions about the use, you can check our official documents first diff --git a/.github/issue_template/feature_request.yml b/.github/issue_template/feature_request.yml new file mode 100644 index 00000000..c764d7b5 --- /dev/null +++ b/.github/issue_template/feature_request.yml @@ -0,0 +1,22 @@ +name: 🚀 Feature request +description: Suggest an idea for twelvet +title: "[Feature]: " +labels: [feature] +assignees: + - twelvet-s +body: + - type: textarea + id: desc + attributes: + label: 功能描述以及必要性描述 + description: 您觉得此新功能会为框架带来什么便利. + placeholder: | + 1. 首先... + 2. 然后... + validations: + required: true + - type: textarea + id: advise + attributes: + label: 建议和方案 + description: 您有好的建议或者修改方案可以提供给我们。 -- GitLab