1
0
zhongfly 4 жил өмнө
parent
commit
7ebe7bb0d8

+ 82 - 0
.github/ISSUE_TEMPLATE/bug_report.yml

@@ -0,0 +1,82 @@
+name: Bug 反馈
+description: 功能运行不正常 / 失效
+title: "[BUG] <title>"
+body:
+  - type: markdown
+    attributes:
+      value: |
+         遇到问题请先尝试使用[Action](https://github.com/tindy2013/subconverter/actions)中的最新版本
+         如果是使用公共转换服务中遇到的问题,请先联系服务的提供者。
+  - type: checkboxes
+    id: version-check
+    attributes:
+      label: 确认版本最新
+      description: 对于您遇到的BUG,是否尝试在最新Action编译的版本中复现?
+      options:
+      - label: 我已经确认在最新Action编译的版本中复现
+        required: true
+  - type: checkboxes
+    id: issue-check
+    attributes:
+      label: 检索issue
+      description: 对于您遇到的BUG,是否已经确认之前没有其他issue涉及?
+      options:
+      - label: 我已经确认之前没有issue涉及此BUG
+        required: true
+  - type: input
+    id: subconverter-version
+    attributes:
+      label: subconverter版本
+      description: subconverter版本
+      placeholder: 请输入详细的版本号
+    validations:
+      required: true
+  - type: input
+    id: convert
+    attributes:
+      label: 转换过程
+      description: BUG发生在什么配置转换为什么配置的过程中?
+      placeholder: 请输入“xxx转换为xxx配置”
+    validations:
+      required: true
+  - type: textarea
+    id: config
+    attributes:
+      label: 转换设置
+      description: 转换时使用的subconverter配置文件或外部配置链接
+      placeholder: 请输入
+    validations:
+      required: true
+  - type: textarea
+    id: description
+    attributes:
+      label: 复现步骤
+      description: BUG的详细复现步骤
+      placeholder: 请输入
+    validations:
+      required: true
+  - type: textarea
+    id: expected
+    attributes:
+      label: 期望结果
+      description: 您期望的结果是?
+      placeholder: 请输入
+    validations:
+      required: true
+  - type: textarea
+    id: actual
+    attributes:
+      label: 实际结果
+      description: 实际得到的结果是?
+      placeholder: 请输入
+    validations:
+      required: true
+  - type: textarea
+    id: logs
+    attributes:
+      label: 错误信息
+      description: subconverter转换时的日志/信息输出
+      render: shell
+      placeholder: 请输入
+    validations:
+      required: false

+ 5 - 0
.github/ISSUE_TEMPLATE/config.yml

@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+  - name: 阅读文档
+    url: https://github.com/tindy2013/subconverter/blob/master/README-cn.md
+    about: 建议您发布issue前先仔细阅读项目文档

+ 30 - 0
.github/ISSUE_TEMPLATE/feature_request.yml

@@ -0,0 +1,30 @@
+name: 建议新功能
+description: 建议此项目增加的功能
+title: "[Feature] <title>"
+body:
+  - type: checkboxes
+    id: ensure
+    attributes:
+      label: verify
+      description: 在提交之前,请确认完成以下选项
+      options:
+      - label: 我已经仔细阅读[项目文档](https://github.com/tindy2013/subconverter/blob/master/README-cn.md),确认现有功能无法解决我的需求
+        required: true
+      - label: 我已经检索过现有[issue](https://github.com/tindy2013/subconverter/issues),确认与现有issue的内容并不重复
+        required: true
+      - label: 我已经尝试自行解决,确认自己没有能力解决
+        required: true
+  - type: textarea
+    id: description
+    attributes:
+      label: 功能描述
+      description: 请详细、清晰地表达你要提出的论述,例如这个问题如何影响到你?你想实现什么功能?目前 subconverter 的行为是什么?
+    validations:
+      required: true
+  - type: textarea
+    id: solution
+    attributes:
+      label: 可能的解决方案
+      description: 您期望的解决方案,可能的实现方法或者可供参考的示例
+    validations:
+      required: false