bug-report.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. name: "🐛 上报bug / Bug report"
  2. description: "提交bug以让改进软件功能 / Create a report to help us improve"
  3. title: "[🐛Bug]: "
  4. labels: ["bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 感谢对项目的支持与关注。在提出问题之前,请确保你已查看相关开发或使用文档! / Thanks for taking the time to fill out this bug report!
  10. - type: textarea
  11. id: bug_description
  12. attributes:
  13. label: 描述一下这个bug / Describe the bug
  14. description: 请使用简介并详细的语句,来描述这个bug。 / A clear and concise description of what the bug is.
  15. placeholder: 我准备……我想要……但是实际上它……了 / I am doing ... What I expect is ... What actually happening is ...
  16. validations:
  17. required: true
  18. - type: textarea
  19. id: reproduction
  20. attributes:
  21. label: 复现步骤 / To Reproduce
  22. description: 按照下面的步骤,可以复现bug / Steps to reproduce the behavior
  23. placeholder: 首先……然后……接着…… / Go to '...', Click on '....', Scroll down to '....'
  24. validations:
  25. required: true
  26. - type: textarea
  27. id: expected
  28. attributes:
  29. label: 如果正常,应该是什么样 / Expected behavior
  30. description: 清楚简洁地描述,按这个步骤下来,本来应该运行得到的结果。 / A clear and concise description of what you expected to happen.
  31. placeholder: 它应该打印…… / It should be...
  32. validations:
  33. required: true
  34. - type: textarea
  35. id: screenshots
  36. attributes:
  37. label: 截图 / Screenshots
  38. description: 请放上你的截图,请给出完整的截图。 / Add screenshots to help explain your problem.
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: logs
  43. attributes:
  44. label: 日志 / Logs
  45. description: 日志贴到这里,请给出完整的日志。 / Upload your log files.
  46. placeholder: |
  47. ```log
  48. 日志贴在这里 / logs here
  49. ```
  50. validations:
  51. required: true
  52. - type: input
  53. id: version
  54. attributes:
  55. label: PACK包版本 / Version
  56. placeholder: 1.0.1.1
  57. validations:
  58. required: true
  59. - type: checkboxes
  60. id: checkboxes
  61. attributes:
  62. label: 验证
  63. description: 提交前请确认已经做过以下操作 / Before submitting the issue, please make sure you do the following
  64. options:
  65. - label: 检查过该问题,之前没有人提过 / Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  66. required: true
  67. - label: 提供了最小可复现工程或详细的复现步骤,确保开发者可以复现 / The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
  68. required: true
  69. - label: 已经提供了完整的报错信息、日志、截图,没有经过删减。
  70. required: true