bug_report.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. name: Bug report
  2. description: Create a report to help us improve
  3. title: "[Bug] "
  4. labels: ["bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: "## Describe the bug"
  9. - type: textarea
  10. id: bug-description
  11. attributes:
  12. label: "Bug Description"
  13. description: "A clear and concise description of what the bug is."
  14. placeholder: "Explain the bug..."
  15. validations:
  16. required: true
  17. - type: markdown
  18. attributes:
  19. value: "## To Reproduce"
  20. - type: textarea
  21. id: steps-to-reproduce
  22. attributes:
  23. label: "Steps to Reproduce"
  24. description: "Steps to reproduce the behavior:"
  25. placeholder: |
  26. 1. Go to '...'
  27. 2. Click on '....'
  28. 3. Scroll down to '....'
  29. 4. See error
  30. validations:
  31. required: true
  32. - type: markdown
  33. attributes:
  34. value: "## Expected behavior"
  35. - type: textarea
  36. id: expected-behavior
  37. attributes:
  38. label: "Expected Behavior"
  39. description: "A clear and concise description of what you expected to happen."
  40. placeholder: "Describe what you expected to happen..."
  41. validations:
  42. required: true
  43. - type: markdown
  44. attributes:
  45. value: "## Screenshots"
  46. - type: textarea
  47. id: screenshots
  48. attributes:
  49. label: "Screenshots"
  50. description: "If applicable, add screenshots to help explain your problem."
  51. placeholder: "Paste your screenshots here or write 'N/A' if not applicable..."
  52. validations:
  53. required: false
  54. - type: markdown
  55. attributes:
  56. value: "## Deployment"
  57. - type: checkboxes
  58. id: deployment
  59. attributes:
  60. label: "Deployment Method"
  61. description: "Please select the deployment method you are using."
  62. options:
  63. - label: "Docker"
  64. - label: "Vercel"
  65. - label: "Server"
  66. - type: markdown
  67. attributes:
  68. value: "## Desktop (please complete the following information):"
  69. - type: input
  70. id: desktop-os
  71. attributes:
  72. label: "Desktop OS"
  73. description: "Your desktop operating system."
  74. placeholder: "e.g., Windows 10"
  75. validations:
  76. required: false
  77. - type: input
  78. id: desktop-browser
  79. attributes:
  80. label: "Desktop Browser"
  81. description: "Your desktop browser."
  82. placeholder: "e.g., Chrome, Safari"
  83. validations:
  84. required: false
  85. - type: input
  86. id: desktop-version
  87. attributes:
  88. label: "Desktop Browser Version"
  89. description: "Version of your desktop browser."
  90. placeholder: "e.g., 89.0"
  91. validations:
  92. required: false
  93. - type: markdown
  94. attributes:
  95. value: "## Smartphone (please complete the following information):"
  96. - type: input
  97. id: smartphone-device
  98. attributes:
  99. label: "Smartphone Device"
  100. description: "Your smartphone device."
  101. placeholder: "e.g., iPhone X"
  102. validations:
  103. required: false
  104. - type: input
  105. id: smartphone-os
  106. attributes:
  107. label: "Smartphone OS"
  108. description: "Your smartphone operating system."
  109. placeholder: "e.g., iOS 14.4"
  110. validations:
  111. required: false
  112. - type: input
  113. id: smartphone-browser
  114. attributes:
  115. label: "Smartphone Browser"
  116. description: "Your smartphone browser."
  117. placeholder: "e.g., Safari"
  118. validations:
  119. required: false
  120. - type: input
  121. id: smartphone-version
  122. attributes:
  123. label: "Smartphone Browser Version"
  124. description: "Version of your smartphone browser."
  125. placeholder: "e.g., 14"
  126. validations:
  127. required: false
  128. - type: markdown
  129. attributes:
  130. value: "## Additional Logs"
  131. - type: textarea
  132. id: additional-logs
  133. attributes:
  134. label: "Additional Logs"
  135. description: "Add any logs about the problem here."
  136. placeholder: "Paste any relevant logs here..."
  137. validations:
  138. required: false