02_runtime_bug.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. name: Runtime bug report
  2. description: Report runtime bugs
  3. labels: ['bug']
  4. body:
  5. - type: checkboxes
  6. id: checklist
  7. attributes:
  8. label: Answers checklist.
  9. description: Before submitting a new issue, please follow the checklist and try to find the answer.
  10. options:
  11. - label: I have read the documentation [XiaoZhi AI Programming Guide](https://ccnphfhqs21z.feishu.cn/wiki/F5krwD16viZoF0kKkvDcrZNYnhb) and the issue is not addressed there.
  12. required: true
  13. - label: I have updated my firmware to the latest version and checked that the issue is present there.
  14. required: true
  15. - label: I have searched the issue tracker for a similar issue and not found a similar issue.
  16. required: true
  17. - type: input
  18. id: xiaozhi_ai_firmware_version
  19. attributes:
  20. label: XiaoZhi AI firmware version.
  21. description: On which firmware version does this issue occur on?
  22. placeholder: ex. v1.2.1_bread-compact-wifi
  23. validations:
  24. required: true
  25. - type: dropdown
  26. id: operating_system
  27. attributes:
  28. label: Operating System used.
  29. multiple: false
  30. options:
  31. - Windows
  32. - Linux
  33. - macOS
  34. validations:
  35. required: true
  36. - type: dropdown
  37. id: build
  38. attributes:
  39. label: How did you build your project?
  40. multiple: false
  41. options:
  42. - Command line with CMake
  43. - Command line with idf.py
  44. - CLion IDE
  45. - VS Code IDE/Cursor
  46. - Other (please specify in More Information)
  47. validations:
  48. required: true
  49. - type: dropdown
  50. id: windows_comand_line
  51. attributes:
  52. label: If you are using Windows, please specify command line type.
  53. multiple: false
  54. options:
  55. - PowerShell
  56. - CMD
  57. validations:
  58. required: false
  59. - type: dropdown
  60. id: power_supply
  61. attributes:
  62. label: Power Supply used.
  63. multiple: false
  64. options:
  65. - USB
  66. - External 5V
  67. - External 3.3V
  68. - Battery
  69. validations:
  70. required: true
  71. - type: textarea
  72. id: expected
  73. attributes:
  74. label: What is the expected behavior?
  75. description: Please provide a clear and concise description of the expected behavior.
  76. placeholder: I expected it to...
  77. validations:
  78. required: true
  79. - type: textarea
  80. id: actual
  81. attributes:
  82. label: What is the actual behavior?
  83. description: Please describe actual behavior.
  84. placeholder: Instead it...
  85. validations:
  86. required: true
  87. - type: textarea
  88. id: steps
  89. attributes:
  90. label: Steps to reproduce.
  91. description: 'How do you trigger this bug? Please walk us through it step by step. Please attach your code here.'
  92. value: |
  93. 1. Step
  94. 2. Step
  95. 3. Step
  96. ...
  97. validations:
  98. required: true
  99. - type: textarea
  100. id: debug_logs
  101. attributes:
  102. label: Debug Logs.
  103. description: Debug log goes here, should contain the backtrace, as well as the reset source if it is a crash.
  104. placeholder: Your log goes here.
  105. render: plain
  106. validations:
  107. required: false
  108. - type: textarea
  109. id: more-info
  110. attributes:
  111. label: More Information.
  112. description: Do you have any other information from investigating this?
  113. placeholder: ex. Any more.
  114. validations:
  115. required: false