--bug-report.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. name: Bug report
  2. description: Create a bug report to help us improve Hoppscotch
  3. title: "[bug]: "
  4. labels: [bug, need testing]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thank you for taking the time to fill out this bug report.
  10. - type: checkboxes
  11. attributes:
  12. label: Is there an existing issue for this?
  13. description: Please search to see if an issue already exists for the bug you encountered
  14. options:
  15. - label: I have searched the existing issues
  16. required: true
  17. - type: textarea
  18. attributes:
  19. label: Current behavior
  20. description: A concise description of what you're experiencing and what you expect
  21. placeholder: |
  22. When I do <X>, <Y> happens and I see the error message attached below:
  23. ```...```
  24. What I expect is <Z>
  25. validations:
  26. required: true
  27. - type: textarea
  28. attributes:
  29. label: Steps to reproduce
  30. description: Add steps to reproduce this behaviour, include console or network logs and screenshots
  31. placeholder: |
  32. 1. Go to '...'
  33. 2. Click on '....'
  34. 3. Scroll down to '....'
  35. 4. See error
  36. validations:
  37. required: true
  38. - type: dropdown
  39. id: env
  40. attributes:
  41. label: Environment
  42. options:
  43. - Production
  44. - Release
  45. - Deploy preview
  46. validations:
  47. required: true
  48. - type: dropdown
  49. id: version
  50. attributes:
  51. label: Version
  52. options:
  53. - Cloud
  54. - Self-hosted
  55. - Local
  56. validations:
  57. required: true