bug.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. name: Bug Report
  2. description: File a bug report!
  3. # title: "(Bug): "
  4. labels: ["bug"]
  5. body:
  6. - type: checkboxes
  7. attributes:
  8. label: Have you tried to find similar open issues?
  9. options:
  10. - label: "Yes, this issue is not a duplicate"
  11. required: true
  12. - type: input
  13. attributes:
  14. label: Browser
  15. description: Which browser are you using?
  16. placeholder: "Example: Google Chrome"
  17. validations:
  18. required: true
  19. - type: input
  20. attributes:
  21. label: Browser Version
  22. description: Which browser version are you using?
  23. placeholder: "Example: Chromium v95"
  24. validations:
  25. required: true
  26. - type: dropdown
  27. attributes:
  28. label: "Extension or Userscript?"
  29. options:
  30. - Extension
  31. - Userscript
  32. validations:
  33. required: true
  34. - type: input
  35. attributes:
  36. label: Extension/Userscript Version
  37. description: Which extension/userscript version are you using?
  38. placeholder: "Example: Version 0.0.0.1"
  39. validations:
  40. required: true
  41. - type: input
  42. attributes:
  43. label: Video link where you see the problem
  44. description: Video link where you see the problem
  45. placeholder: "Example: https://www.youtube.com/watch?v=s4-gMgdsnHQ"
  46. validations:
  47. required: true
  48. - type: textarea
  49. attributes:
  50. label: What happened?
  51. description: Also tell us, what did you expect to happen?
  52. placeholder: Tell us what you see!
  53. value: "A bug happened!"
  54. validations:
  55. required: true
  56. - type: textarea
  57. attributes:
  58. label: How to reproduce/recreate?
  59. description: Detailed steps to reproduce/recreate it.
  60. placeholder: "We need to be able to reproduce/recreate that bug/event in order to fix it. Please write the steps in detail."
  61. value: "Tell us how it happened with detailed steps for us."
  62. validations:
  63. required: true
  64. - type: dropdown
  65. attributes:
  66. label: "Will you be available for follow-up questions to help developers diagnose & fix the issue?"
  67. options:
  68. - "Yes"
  69. - "No"
  70. validations:
  71. required: true