You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

107 lines
2.6 KiB

  1. name: Bug report
  2. description: Report a bug you have found, so it can be fixed
  3. labels:
  4. - bug
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking time to fill out this bug report!
  10. - type: checkboxes
  11. id: terms
  12. attributes:
  13. label: I have searched for an opened issue and didn't find my bug
  14. description: |
  15. Before continuing, please verify that your bug is not already known, i.e.:
  16. - there is an issue that describe your bug;
  17. - the issue is not closed.
  18. If you have found a closed issue that describes the same bug as yours, please don't comment inside and open a new issue instead.
  19. Even though it may look the same, your bug might be totally different :smile:
  20. options:
  21. - label: I confirm I didn't find any issue regarding my bug
  22. required: true
  23. - type: dropdown
  24. id: cli-version
  25. validations:
  26. required: true
  27. attributes:
  28. label: Version of Kosmorro
  29. description: |
  30. What version of Kosmorro are you using?
  31. Note: if you don't know, invoke `kosmorro --version`.
  32. options:
  33. - "0.10"
  34. - "0.9"
  35. - master branch
  36. - features branch
  37. - type: dropdown
  38. id: python-version
  39. validations:
  40. required: true
  41. attributes:
  42. label: Version of Python
  43. description: |
  44. What version of Python are you using?
  45. Note: if you don't know, invoke `kosmorro --version` or `python --version`.
  46. options:
  47. - "3.10"
  48. - "3.9"
  49. - "3.8"
  50. - "3.7"
  51. - type: dropdown
  52. id: operating-system
  53. validations:
  54. required: true
  55. attributes:
  56. label: Operating system
  57. description: What operating system did you use?
  58. multiple: true
  59. options:
  60. - Linux
  61. - FreeBSD
  62. - macOS 12 (Monterey)
  63. - macOS 11 (Big Sur)
  64. - macOS 10.15 (Catalina)
  65. - Other
  66. - type: dropdown
  67. id: install-source
  68. validations:
  69. required: true
  70. attributes:
  71. label: Installation source
  72. description: What did you use to install Kosmorro?
  73. options:
  74. - PyPI
  75. - Arch User Repository (AUR)
  76. - FreshPorts
  77. - I used the AppImage
  78. - I have compiled the package from source
  79. - Other (explain in the description)
  80. - type: textarea
  81. id: description
  82. validations:
  83. required: true
  84. attributes:
  85. label: Bug description
  86. description: |
  87. Describe the bug you have encountered:
  88. - what did you try to do?
  89. - what did you expect the program to do?
  90. - what happened instead?