bug_report.yml 3.0 KB

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