02_runtime_bug.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. name: Runtime bug report
  2. description: Report runtime bugs
  3. labels: ['Type: 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 [ESP-IDF Programming Guide](https://docs.espressif.com/projects/esp-idf/en/latest/) and the issue is not addressed there.
  12. required: true
  13. - label: I have updated my IDF branch (master or release) 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: idf_version
  19. attributes:
  20. label: IDF version.
  21. description: On which IDF version does this issue occur on? Run `git describe --tags` to find it.
  22. placeholder: ex. v3.2-dev-1148-g96cd3b75c
  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 Make
  43. - Command line with CMake
  44. - Command line with idf.py
  45. - Eclipse IDE
  46. - CLion IDE
  47. - VS Code IDE
  48. - Other (please specify in More Information)
  49. validations:
  50. required: true
  51. - type: dropdown
  52. id: windows_comand_line
  53. attributes:
  54. label: If you are using Windows, please specify command line type.
  55. multiple: false
  56. options:
  57. - PowerShell
  58. - CMD
  59. validations:
  60. required: false
  61. - type: input
  62. id: devkit
  63. attributes:
  64. label: Development Kit.
  65. description: On which Development Kit does this issue occur on?
  66. placeholder: ex. ESP32-Wrover-Kit v2 | Custom Board
  67. validations:
  68. required: true
  69. - type: dropdown
  70. id: power_supply
  71. attributes:
  72. label: Power Supply used.
  73. multiple: false
  74. options:
  75. - USB
  76. - External 5V
  77. - External 3.3V
  78. - Battery
  79. validations:
  80. required: true
  81. - type: textarea
  82. id: expected
  83. attributes:
  84. label: What is the expected behavior?
  85. description: Please provide a clear and concise description of the expected behavior.
  86. placeholder: I expected it to...
  87. validations:
  88. required: true
  89. - type: textarea
  90. id: actual
  91. attributes:
  92. label: What is the actual behavior?
  93. description: Please describe actual behavior.
  94. placeholder: Instead it...
  95. validations:
  96. required: true
  97. - type: textarea
  98. id: steps
  99. attributes:
  100. label: Steps to reproduce.
  101. description: 'How do you trigger this bug? Please walk us through it step by step. Please attach your code here.'
  102. value: |
  103. 1. Step
  104. 2. Step
  105. 3. Step
  106. ...
  107. validations:
  108. required: true
  109. - type: textarea
  110. id: debug_logs
  111. attributes:
  112. label: Debug Logs.
  113. description: Debug log goes here, should contain the backtrace, as well as the reset source if it is a crash.
  114. placeholder: Your log goes here.
  115. render: plain
  116. validations:
  117. required: false
  118. - type: textarea
  119. id: more-info
  120. attributes:
  121. label: More Information.
  122. description: Do you have any other information from investigating this?
  123. placeholder: ex. I tried on my friend's Windows 10 PC and the command works there.
  124. validations:
  125. required: false