BUG.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. name: 🐞 Bug Report
  2. description: Something is broken?
  3. labels: ["bug"]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. - Create a discussion instead if you are looking for support:
  9. https://github.com/maennchen/ZipStream-PHP/discussions
  10. - type: input
  11. id: version
  12. attributes:
  13. label: ZipStream-PHP version
  14. placeholder: x.y.z
  15. validations:
  16. required: true
  17. - type: input
  18. id: php-version
  19. attributes:
  20. label: PHP version
  21. placeholder: x.y.z
  22. validations:
  23. required: true
  24. - type: checkboxes
  25. id: constraints
  26. attributes:
  27. label: Constraints for Bug Report
  28. options:
  29. - label: |
  30. I'm using a version of ZipStream that is currently supported:
  31. https://github.com/maennchen/ZipStream-PHP#version-support
  32. required: true
  33. - label: |
  34. I'm using a version of PHP that has active support:
  35. https://www.php.net/supported-versions.php
  36. required: true
  37. - label: |
  38. I'm using a version of PHP that is compatible with your used
  39. ZipStream version.
  40. required: true
  41. - label: |
  42. I'm using the latest release of the used ZipStream major version.
  43. required: true
  44. - type: textarea
  45. id: summary
  46. attributes:
  47. label: Summary
  48. description: Provide a summary describing the problem you are experiencing.
  49. validations:
  50. required: true
  51. - type: textarea
  52. id: current-behaviour
  53. attributes:
  54. label: Current behavior
  55. description: What is the current (buggy) behavior?
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: reproduction
  60. attributes:
  61. label: How to reproduce
  62. description: Provide steps to reproduce the bug.
  63. validations:
  64. required: true
  65. - type: textarea
  66. id: expected-behaviour
  67. attributes:
  68. label: Expected behavior
  69. description: What was the expected (correct) behavior?
  70. validations:
  71. required: true