You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bug-report.yaml 3.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. name: Bug Report
  2. description: Found something you weren't expecting? Report it here!
  3. labels: kind/bug
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. NOTE: If your issue is a security concern, please send an email to security@gitea.io instead of opening a public issue.
  9. - type: markdown
  10. attributes:
  11. value: |
  12. 1. Please speak English, this is the language all maintainers can speak and write.
  13. 2. Please ask questions or configuration/deploy problems on our Discord
  14. server (https://discord.gg/gitea) or forum (https://discourse.gitea.io).
  15. 3. Make sure you are using the latest release and
  16. take a moment to check that your issue hasn't been reported before.
  17. 4. Make sure it's not mentioned in the FAQ (https://docs.gitea.com/help/faq)
  18. 5. Please give all relevant information below for bug reports, because
  19. incomplete details will be handled as an invalid report.
  20. 6. In particular it's really important to provide pertinent logs. You must give us DEBUG level logs.
  21. Please read https://docs.gitea.com/administration/logging-config#collecting-logs-for-help
  22. In addition, if your problem relates to git commands set `RUN_MODE=dev` at the top of app.ini
  23. - type: textarea
  24. id: description
  25. attributes:
  26. label: Description
  27. description: |
  28. Please provide a description of your issue here, with a URL if you were able to reproduce the issue (see below)
  29. If you are using a proxy or a CDN (e.g. Cloudflare) in front of Gitea, please disable the proxy/CDN fully and access Gitea directly to confirm the issue still persists without those services.
  30. - type: input
  31. id: gitea-ver
  32. attributes:
  33. label: Gitea Version
  34. description: Gitea version (or commit reference) of your instance
  35. validations:
  36. required: true
  37. - type: dropdown
  38. id: can-reproduce
  39. attributes:
  40. label: Can you reproduce the bug on the Gitea demo site?
  41. description: |
  42. If so, please provide a URL in the Description field
  43. URL of Gitea demo: https://try.gitea.io
  44. options:
  45. - "Yes"
  46. - "No"
  47. validations:
  48. required: true
  49. - type: markdown
  50. attributes:
  51. value: |
  52. It's really important to provide pertinent logs
  53. Please read https://docs.gitea.com/administration/logging-config#collecting-logs-for-help
  54. In addition, if your problem relates to git commands set `RUN_MODE=dev` at the top of app.ini
  55. - type: input
  56. id: logs
  57. attributes:
  58. label: Log Gist
  59. description: Please provide a gist URL of your logs, with any sensitive information (e.g. API keys) removed/hidden
  60. - type: textarea
  61. id: screenshots
  62. attributes:
  63. label: Screenshots
  64. description: If this issue involves the Web Interface, please provide one or more screenshots
  65. - type: input
  66. id: git-ver
  67. attributes:
  68. label: Git Version
  69. description: The version of git running on the server
  70. - type: input
  71. id: os-ver
  72. attributes:
  73. label: Operating System
  74. description: The operating system you are using to run Gitea
  75. - type: textarea
  76. id: run-info
  77. attributes:
  78. label: How are you running Gitea?
  79. description: |
  80. Please include information on whether you built Gitea yourself, used one of our downloads, are using https://try.gitea.io or are using some other package
  81. Please also tell us how you are running Gitea, e.g. if it is being run from docker, a command-line, systemd etc.
  82. If you are using a package or systemd tell us what distribution you are using
  83. validations:
  84. required: true
  85. - type: dropdown
  86. id: database
  87. attributes:
  88. label: Database
  89. description: What database system are you running?
  90. options:
  91. - PostgreSQL
  92. - MySQL
  93. - MSSQL
  94. - SQLite