bug.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 volume type is selected under Settings → Virtual Drive?
  41. value: |
  42. - WinFsp
  43. - WinFsp (Local Drive)
  44. - FUSE-T
  45. - macFUSE
  46. - WebDAV (Windows Explorer)
  47. - WebDAV (AppleScript)
  48. - WebDAV (gio)
  49. - WebDAV (HTTP Address)
  50. - Dokany (1.5)
  51. validations:
  52. required: true
  53. - type: textarea
  54. id: reproduction-steps
  55. attributes:
  56. label: Steps to Reproduce
  57. value: |
  58. 1. [First Step]
  59. 2. [Second Step]
  60. 3. …
  61. validations:
  62. required: true
  63. - type: textarea
  64. id: expected-behaviour
  65. attributes:
  66. label: Expected Behavior
  67. placeholder: What you expect to happen.
  68. validations:
  69. required: true
  70. - type: textarea
  71. id: actual-behaviour
  72. attributes:
  73. label: Actual Behavior
  74. placeholder: What actually happens.
  75. validations:
  76. required: true
  77. - type: dropdown
  78. id: reproducibility
  79. attributes:
  80. label: Reproducibility
  81. description: How often does the described behaviour occur?
  82. options:
  83. - Always
  84. - Intermittent
  85. - Only once
  86. validations:
  87. required: true
  88. - type: textarea
  89. id: logs
  90. attributes:
  91. label: Relevant Log Output
  92. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  93. render: shell
  94. - type: textarea
  95. id: further-info
  96. attributes:
  97. label: Anything else?
  98. description: Links? References? Screenshots? Configurations? Any data that might be necessary to reproduce the issue?