bug_report.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. name: Bug report
  2. description: Report a bug to help us improve frp
  3. body:
  4. - type: markdown
  5. attributes:
  6. value: |
  7. Thanks for taking the time to fill out this bug report!
  8. - type: textarea
  9. id: bug-description
  10. attributes:
  11. label: Bug Description
  12. description: Tell us what issues you ran into
  13. placeholder: Include information about what you tried, what you expected to happen, and what actually happened. The more details, the better!
  14. validations:
  15. required: true
  16. - type: input
  17. id: frpc-version
  18. attributes:
  19. label: frpc Version
  20. description: Include the output of `frpc -v`
  21. validations:
  22. required: true
  23. - type: input
  24. id: frps-version
  25. attributes:
  26. label: frps Version
  27. description: Include the output of `frps -v`
  28. validations:
  29. required: true
  30. - type: input
  31. id: system-architecture
  32. attributes:
  33. label: System Architecture
  34. description: Include which architecture you used, such as `linux/amd64`, `windows/amd64`
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: config
  39. attributes:
  40. label: Configurations
  41. description: Include what configurrations you used and ran into this problem
  42. placeholder: Pay attention to hiding the token and password in your output
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: log
  47. attributes:
  48. label: Logs
  49. description: Prefer you providing releated error logs here
  50. placeholder: Pay attention to hiding your personal informations
  51. - type: textarea
  52. id: steps-to-reproduce
  53. attributes:
  54. label: Steps to reproduce
  55. description: How to reproduce it? It's important for us to find the bug
  56. value: |
  57. 1.
  58. 2.
  59. 3.
  60. ...
  61. - type: checkboxes
  62. id: area
  63. attributes:
  64. label: Affected area
  65. options:
  66. - label: "Docs"
  67. - label: "Installation"
  68. - label: "Performance and Scalability"
  69. - label: "Security"
  70. - label: "User Experience"
  71. - label: "Test and Release"
  72. - label: "Developer Infrastructure"
  73. - label: "Client Plugin"
  74. - label: "Server Plugin"
  75. - label: "Extensions"
  76. - label: "Others"