bug_report.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. name: Bug 反馈
  2. description: 功能运行不正常 / 失效
  3. title: "[BUG] <title>"
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. 遇到问题请先尝试使用[Action](https://github.com/metacubex/subconverter/actions)中的最新版本
  9. 如果是使用公共转换服务中遇到的问题,请先联系服务的提供者。
  10. - type: checkboxes
  11. id: version-check
  12. attributes:
  13. label: 确认版本最新
  14. description: 对于您遇到的BUG,是否尝试在最新Action编译的版本中复现?
  15. options:
  16. - label: 我已经确认在最新Action编译的版本中复现
  17. required: true
  18. - type: checkboxes
  19. id: issue-check
  20. attributes:
  21. label: 检索issue
  22. description: 对于您遇到的BUG,是否已经确认之前没有其他issue涉及?
  23. options:
  24. - label: 我已经确认之前没有issue涉及此BUG
  25. required: true
  26. - type: input
  27. id: subconverter-version
  28. attributes:
  29. label: subconverter版本
  30. description: subconverter版本
  31. placeholder: 请输入详细的版本号
  32. validations:
  33. required: true
  34. - type: input
  35. id: convert
  36. attributes:
  37. label: 转换过程
  38. description: BUG发生在什么配置转换为什么配置的过程中?
  39. placeholder: 请输入“xxx转换为xxx配置”
  40. validations:
  41. required: true
  42. - type: textarea
  43. id: config
  44. attributes:
  45. label: 转换设置
  46. description: 转换时使用的subconverter配置文件或外部配置链接
  47. placeholder: 请输入
  48. validations:
  49. required: true
  50. - type: textarea
  51. id: description
  52. attributes:
  53. label: 复现步骤
  54. description: BUG的详细复现步骤
  55. placeholder: 请输入
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: expected
  60. attributes:
  61. label: 期望结果
  62. description: 您期望的结果是?
  63. placeholder: 请输入
  64. validations:
  65. required: true
  66. - type: textarea
  67. id: actual
  68. attributes:
  69. label: 实际结果
  70. description: 实际得到的结果是?
  71. placeholder: 请输入
  72. validations:
  73. required: true
  74. - type: textarea
  75. id: logs
  76. attributes:
  77. label: 错误信息
  78. description: subconverter转换时的日志/信息输出
  79. render: shell
  80. placeholder: 请输入
  81. validations:
  82. required: false