└── .github └── ISSUE_TEMPLATE └── feature-issue.yml /.github/ISSUE_TEMPLATE/feature-issue.yml: -------------------------------------------------------------------------------- 1 | name: 新特性提交 2 | description: 如果您有好的想法 3 | labels: ["Feature" ] 4 | body: 5 | - type: checkboxes 6 | id: "yml-1" 7 | attributes: 8 | label: "检查项" 9 | description: "请逐个检查下列项目,并勾选确认。" 10 | options: 11 | - label: "我充分理解提交的建议可能无法所有启动器作者参与,并尊重所有启动器开发者的选择" 12 | required: true 13 | - label: "我确认在Issues列表中并无其他人已经提出过与此问题相同或相似的问题" 14 | required: true 15 | - label: "我确认该反馈并非针对单个启动器的,如果是,我将会去该启动器的反馈页面反馈" 16 | required: true 17 | - type: dropdown 18 | id: "user-type" 19 | attributes: 20 | label: "您是什么类型的用户" 21 | description: "请认真填写该选项" 22 | options: 23 | - 普通用户 24 | - 启动器作者 25 | - 第三方网站管理/负责人(MC相关的) 26 | - 服务器管理 27 | - 其他 28 | validations: 29 | required: true 30 | - type: textarea 31 | id: "content" 32 | attributes: 33 | label: 请简单的说一下您的想法 34 | description: "So,我们需要做一些什么呢?" 35 | placeholder: "-(请在这里回答)-" 36 | validations: 37 | required: true 38 | - type: textarea 39 | id: "whydothat" 40 | attributes: 41 | label: 它能解决什么样的问题/带来什么样的帮助 42 | description: "简而言之,为什么这个功能是必要的" 43 | placeholder: "-(请在这里回答)-" 44 | validations: 45 | required: true 46 | - type: textarea 47 | id: "yml-4" 48 | attributes: 49 | label: 期望的结果 50 | placeholder: "-(请在这里回答)-" 51 | validations: 52 | required: true 53 | - type: textarea 54 | id: "yml-5" 55 | attributes: 56 | label: 是否有对这个方案的相关链接? 57 | description: "例如相关SDK的链接、开发文档等" 58 | placeholder: "-(请在这里回答,若没有可留空)-" 59 | validations: 60 | required: false 61 | - type: textarea 62 | id: "yml-8" 63 | attributes: 64 | label: 附注 65 | placeholder: "-(请在这里回答,若没有可留空)-" 66 | --------------------------------------------------------------------------------