bug.yml 1.9 KB

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