bug.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. name: Bug Report
  2. description: Create a report to help us improve
  3. labels: ["type:bug"]
  4. body:
  5. - type: checkboxes
  6. id: terms
  7. attributes:
  8. label: Please agree to the following
  9. options:
  10. - label: I have searched [existing issues](https://github.com/cryptomator/cryptomator/issues?q=) for duplicates
  11. required: true
  12. - label: I agree to follow this project's [Code of Conduct](https://github.com/cryptomator/cryptomator/blob/develop/.github/CODE_OF_CONDUCT.md)
  13. required: true
  14. - type: input
  15. id: summary
  16. attributes:
  17. label: Summary
  18. placeholder: Please summarize your problem.
  19. validations:
  20. required: true
  21. - type: textarea
  22. id: software-versions
  23. attributes:
  24. label: What software is involved?
  25. description: |
  26. Examples:
  27. - Operating System: Windows 10
  28. - Cryptomator: 1.5.16
  29. - LibreOffice: 7.1.4
  30. value: |
  31. - Operating System:
  32. - Cryptomator:
  33. - …
  34. validations:
  35. required: true
  36. - type: dropdown
  37. id: volume-type
  38. attributes:
  39. label: Volume Type
  40. description: What is selected under Settings → Virtual Drive?
  41. multiple: true
  42. options:
  43. - FUSE
  44. - Dokany
  45. - WebDAV
  46. validations:
  47. required: false
  48. - type: textarea
  49. id: reproduction-steps
  50. attributes:
  51. label: Steps to Reproduce
  52. value: |
  53. 1. [First Step]
  54. 2. [Second Step]
  55. 3. …
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: expected-behaviour
  60. attributes:
  61. label: Expected Behavior
  62. placeholder: What you expect to happen.
  63. validations:
  64. required: true
  65. - type: textarea
  66. id: actual-behaviour
  67. attributes:
  68. label: Actual Behavior
  69. placeholder: What actually happens.
  70. validations:
  71. required: true
  72. - type: dropdown
  73. id: reproducibility
  74. attributes:
  75. label: Reproducibility
  76. description: How often does the described behaviour occur?
  77. options:
  78. - Always
  79. - Intermittent
  80. - Only once
  81. validations:
  82. required: true
  83. - type: textarea
  84. id: logs
  85. attributes:
  86. label: Relevant Log Output
  87. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  88. render: shell
  89. - type: textarea
  90. id: further-info
  91. attributes:
  92. label: Anything else?
  93. description: Links? References? Screenshots? Configurations? Any data that might be necessary to reproduce the issue?