bug.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. name: Bug Report
  2. description: File a report for unexpected behavior in SuperTux.
  3. title: "[Bug]: "
  4. labels: ["type:bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking the time to fill out this bug report!
  10. - type: input
  11. id: supertux-version
  12. attributes:
  13. label: SuperTux Version
  14. description: The version of SuperTux, shown at the bottom-left corner on the title screen.
  15. placeholder: ex. v0.6.3-1236-g7451121dd
  16. validations:
  17. required: true
  18. - type: input
  19. id: system-info
  20. attributes:
  21. label: System Information
  22. description: Details about your operating system (such as Linux distribution or Windows version) and CPU architecture (ex. 64-bit or 32-bit).
  23. placeholder: ex. Windows 11 64-bit
  24. validations:
  25. required: true
  26. - type: textarea
  27. id: expected-behavior
  28. attributes:
  29. label: Expected Behavior
  30. description: What did you expect to happen?
  31. placeholder: Describe the behavior you expected in detail.
  32. validations:
  33. required: true
  34. - type: textarea
  35. id: actual-behavior
  36. attributes:
  37. label: Actual Behavior
  38. description: Instead, what actually happened?
  39. placeholder: Describe the actual behavior in detail.
  40. validations:
  41. required: true
  42. - type: textarea
  43. id: steps-to-reproduce
  44. attributes:
  45. label: Steps To Reproduce Actual Behavior
  46. description: A clear and concise description of how the actual behavior was achieved, since starting up the game.
  47. placeholder: |
  48. Describe the steps leading to the actual behavior, preferably with a numerated list.
  49. 1. ...
  50. 2. ...
  51. 3. ...
  52. validations:
  53. required: true
  54. - type: textarea
  55. id: additional-info
  56. attributes:
  57. label: Additional Information
  58. description: Include any additional information regarding the bug.
  59. placeholder: You can also leave this empty.
  60. validations:
  61. required: false
  62. - type: checkboxes
  63. id: guidelines
  64. attributes:
  65. label: Guidelines For Reporting Issues
  66. description: "Before submitting this issue, make sure you have done the following:"
  67. options:
  68. - label: I have read <https://github.com/SuperTux/supertux/blob/master/CONTRIBUTING.md#bug-reports>.
  69. required: true
  70. - label: I have verified this isn't an issue that's already been reported.
  71. required: true
  72. - label: I have verified this isn't a [discussion](https://github.com/SuperTux/supertux/discussions), or an issue about a crash or a feature request, but rather an actual bug ─ that is, the game did something not intended.
  73. required: true
  74. - label: I have verified this issue is **not** about wrong translations (use Transifex for those), or anything unsupported (e.g. third-party add-ons).
  75. required: true
  76. - label: In this report, I have only included details about **one** (1) bug.
  77. required: true
  78. - label: If I make a mistake while submitting this report, I agree to use the "Edit" feature to correct it, instead of closing this issue and opening a new one.
  79. required: true