1
0

bug_report.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. name: Issue Report
  2. description: "Create a report to help us improve."
  3. body:
  4. - type: checkboxes
  5. id: terms
  6. attributes:
  7. label: Welcome
  8. options:
  9. - label: Yes, I'm using the latest major release. Only such installations are supported.
  10. required: true
  11. - label: Yes, I'm using the supported system. Only such systems are supported.
  12. required: true
  13. - label: Yes, I have read all WIKI document,nothing can help me in my problem.
  14. required: true
  15. - label: Yes, I've searched similar issues on GitHub and didn't find any.
  16. required: true
  17. - label: Yes, I've included all information below (version, config, log, etc).
  18. required: true
  19. - type: textarea
  20. id: problem
  21. attributes:
  22. label: Description of the problem,screencshot would be good
  23. placeholder: Your problem description
  24. validations:
  25. required: true
  26. - type: textarea
  27. id: version
  28. attributes:
  29. label: Version of 3x-ui
  30. value: |-
  31. <details>
  32. ```console
  33. # Paste here
  34. ```
  35. </details>
  36. validations:
  37. required: true
  38. - type: textarea
  39. id: log
  40. attributes:
  41. label: x-ui log reports or xray log
  42. value: |-
  43. <details>
  44. ```console
  45. # paste log here
  46. ```
  47. </details>
  48. validations:
  49. required: true