BUG_REPORT.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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: input
  7. id: os
  8. attributes:
  9. label: OS version
  10. description: The Linux distribution and kernel version as shown by `uname -a`
  11. validations:
  12. required: true
  13. - type: input
  14. id: docker
  15. attributes:
  16. label: Docker version
  17. description: The Docker version as shown by `docker -v`
  18. validations:
  19. required: true
  20. - type: textarea
  21. id: summary
  22. attributes:
  23. label: Summary
  24. description: A clear and concise description of what the problem is.
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: compose
  29. attributes:
  30. label: Docker Compose file
  31. description: The Docker Compose file (or otherwise `run` command) of the container
  32. validations:
  33. required: true
  34. - type: textarea
  35. id: log
  36. attributes:
  37. label: Docker log
  38. description: The Docker logfile of the container
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: screenshot
  43. attributes:
  44. label: Screenshots (optional)
  45. description: Screenshot of the problem
  46. validations:
  47. required: false