bug_report.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. name: Bug Report
  2. description: Create an Issue that details broken or unexpected behaviour
  3. labels: ["type:bug"]
  4. body:
  5. - type: input
  6. id: hash
  7. attributes:
  8. label: rAthena Hash
  9. description: |
  10. Please specify the rAthena [GitHub hash](https://help.github.com/articles/autolinked-references-and-urls/#commit-shas) on which you encountered this issue.
  11. One way to get your hash is to type `git rev-parse --short HEAD` on your console.
  12. validations:
  13. required: true
  14. - type: input
  15. id: date
  16. attributes:
  17. label: Client Date
  18. description: Specify the client date you are using when this Issue occured.
  19. placeholder: YYYY-MM-DD
  20. validations:
  21. required: true
  22. - type: dropdown
  23. id: mode
  24. attributes:
  25. label: Server Mode
  26. description: Specify the server-mode you are using when this Issue occured.
  27. multiple: true
  28. options:
  29. - Pre-Renewal
  30. - Renewal
  31. validations:
  32. required: true
  33. - type: textarea
  34. id: result
  35. attributes:
  36. label: Result
  37. description: Describe the issue that you experienced in detail.
  38. placeholder: |
  39. 1. In this environment...
  40. 2. With this config...
  41. 3. Trigger event '...'
  42. 4. See error...
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: logs
  47. attributes:
  48. label: Relevant Log Output
  49. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  50. render: Shell
  51. validations:
  52. required: false
  53. - type: textarea
  54. id: expected
  55. attributes:
  56. label: Expected Result
  57. description: Describe what you would expect to happen in detail.
  58. validations:
  59. required: true
  60. - type: textarea
  61. id: howto
  62. attributes:
  63. label: How to Reproduce
  64. description: If you have not stated in the description of the result already, please give us a short guide how we can reproduce your issue.
  65. validations:
  66. required: true
  67. - type: textarea
  68. id: info
  69. attributes:
  70. label: Official Information
  71. description: If possible, provide information from official servers (kRO or other sources) which prove that the result is wrong. Please take into account that iRO (especially iRO Wiki) is not always the same as kRO.
  72. validations:
  73. required: true
  74. - type: textarea
  75. id: modifications
  76. attributes:
  77. label: Modifications that may affect results
  78. description: |
  79. If you are using any modifications, especially in /src/, you must type them here.
  80. Even the smallest changes can cause things to break. We need to know what you have customized.
  81. This can be either configurations you changed, database values you changed, or even external source modifications.