2
0

bug_report.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. name: Bug report
  2. description: File a bug report to help us improve
  3. labels: ["\U0001F48A bug"]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thanks for taking the time to fill out this bug report!
  9. - Please use English :)
  10. - For questions, ask in [Discussions](https://github.com/gogs/gogs/discussions).
  11. - Before you file an issue read the [Contributing guide](https://github.com/gogs/gogs/blob/main/.github/CONTRIBUTING.md).
  12. - Check to make sure someone hasn't already opened a similar [issue](https://github.com/gogs/gogs/issues).
  13. - type: input
  14. attributes:
  15. label: Gogs version
  16. description: |
  17. Please specify the exact Gogs version you're reporting for, e.g. "0.12.3". You can find the version information in the admin dashboard (`/admin`).
  18. _Note that "gogs/gogs:latest" is not a Gogs version, it does not mean anything._
  19. validations:
  20. required: true
  21. - type: textarea
  22. attributes:
  23. label: Git version
  24. description: |
  25. Please specify the exact Git version you're using of both server and client. You can find the version information by running `git version`.
  26. value: |
  27. - Server:
  28. - Client:
  29. validations:
  30. required: true
  31. - type: input
  32. attributes:
  33. label: Operating system
  34. description: |
  35. Please specify the exact operating system name and version you're reporting for, e.g. "Windows 10", "CentOS 7", "Ubuntu 20.04".
  36. validations:
  37. required: true
  38. - type: input
  39. attributes:
  40. label: Database
  41. description: |
  42. Please specify the exact database and version you're reporting for, e.g. "PostgreSQL 9.6", "MySQL 5.7", "SQLite 3".
  43. validations:
  44. required: true
  45. - type: textarea
  46. attributes:
  47. label: Describe the bug
  48. description: A clear and concise description of what the bug is.
  49. validations:
  50. required: true
  51. - type: textarea
  52. attributes:
  53. label: To reproduce
  54. description: The steps to reproduce the problem described above.
  55. validations:
  56. required: true
  57. - type: textarea
  58. attributes:
  59. label: Expected behavior
  60. description: A clear and concise description of what you expected to happen.
  61. validations:
  62. required: true
  63. - type: textarea
  64. attributes:
  65. label: Additional context
  66. description: |
  67. Links? References? Suggestions? Anything that will give us more context about the issue you are encountering!
  68. Please include any error logs found in the `log/gogs.log` file. Otherwise, we probably won't be able to help you much.
  69. Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
  70. validations:
  71. required: false
  72. - type: checkboxes
  73. attributes:
  74. label: Code of Conduct
  75. description: By submitting this issue, you agree to follow our [Code of Conduct](https://go.dev/conduct)
  76. options:
  77. - label: I agree to follow this project's Code of Conduct
  78. required: true