BUG_REPORT.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. name: Bug Report
  2. description: Create a bug report.
  3. labels: [ "bug" ]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for taking your time to post a bug report!
  9. Please fill out the following form. I might need to close the issue without required fields or e.g. clear repro steps.
  10. - type: checkboxes
  11. attributes:
  12. label: Checks
  13. description: Before posting a report, please check following things.
  14. options:
  15. - label: "Not a duplicate."
  16. required: true
  17. - label: "Not a question, feature request, or anything other than a bug report directly related to Splide. Use Discussions for these topics: https://github.com/Splidejs/splide/discussions"
  18. required: true
  19. - type: input
  20. id: version
  21. attributes:
  22. label: Version
  23. description: The version where the bug happens.
  24. placeholder: v3.x.x
  25. validations:
  26. required: true
  27. - type: textarea
  28. attributes:
  29. label: Description
  30. description: Describe the bug.
  31. placeholder: Provide a clear and precise description. Feel free to paste your code, screenshort, etc.
  32. validations:
  33. required: true
  34. - type: input
  35. id: reproduction-link
  36. attributes:
  37. label: Reproduction Link
  38. description: A link to a reproduction (CodeSandbox, etc.). **Do not link to your project**, it has to be a minimal and fresh reproduction.
  39. placeholder: "https://codesandbox.io/"
  40. validations:
  41. required: false
  42. - type: textarea
  43. attributes:
  44. label: Steps to Reproduce
  45. description: Describe steps how to reproduce the bug.
  46. placeholder: |
  47. 1.
  48. 2.
  49. ...
  50. validations:
  51. required: true
  52. - type: textarea
  53. attributes:
  54. label: Expected Behaviour
  55. description: Describe what you expected to happen.
  56. validations:
  57. required: true