1
0

BUG_REPORT.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. name: "\U0001F41E Bug Report"
  2. description: Create a report to help us improve the container
  3. title: "[Bug]: "
  4. labels: ["bug"]
  5. body:
  6. - type: checkboxes
  7. attributes:
  8. label: Is there an existing issue for this?
  9. description: Please search to see if an issue already exists for the bug you encountered.
  10. options:
  11. - label: I have searched the existing issues
  12. required: true
  13. - type: input
  14. id: cpu
  15. attributes:
  16. label: Machine specifications
  17. description: The processor and RAM amount in your machine.
  18. placeholder: e.g. Intel N5105 / 16 GB
  19. validations:
  20. required: true
  21. - type: input
  22. id: os
  23. attributes:
  24. label: Operating system
  25. description: The Linux distribution and kernel version as shown by `uname -a`.
  26. placeholder: e.g. Ubuntu 24.04 / Kernel 6.8.0-22-generic
  27. validations:
  28. required: true
  29. - type: input
  30. id: docker
  31. attributes:
  32. label: Docker version
  33. description: The Docker version as shown by `docker -v`.
  34. placeholder: e.g. Docker version 26.0.1, build d260a54
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: summary
  39. attributes:
  40. label: Description
  41. description: A clear and concise description of the problem.
  42. validations:
  43. required: true
  44. - type: textarea
  45. id: compose
  46. attributes:
  47. label: Docker compose
  48. description: The Docker compose file (or otherwise `run` command).
  49. validations:
  50. required: true
  51. - type: textarea
  52. id: log
  53. attributes:
  54. label: Docker log
  55. description: The Docker logfile of the container.
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: screenshot
  60. attributes:
  61. label: Screenshots (optional)
  62. description: Screenshots of the problem.
  63. validations:
  64. required: false