bug_report.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. name: "Bug Report"
  2. description: Report a bug to help improve the project.
  3. title: "bug: "
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for taking the time to report this bug!
  9. _The more information you share, the faster we can identify and fix the bug._
  10. Prior to opening the issue, please make sure that you:
  11. - Use English to communicate.
  12. - Search the [open issues](https://github.com/apache/apisix/issues) and [discussion forum](https://github.com/apache/apisix/discussions) to avoid duplicating the issue.
  13. - type: textarea
  14. id: current-behavior
  15. attributes:
  16. label: Current Behavior
  17. description: Describe the issue you are facing.
  18. placeholder: |
  19. What is the issue with the current behavior?
  20. validations:
  21. required: true
  22. - type: textarea
  23. id: expected-behavior
  24. attributes:
  25. label: Expected Behavior
  26. description: Describe what you expected to happen.
  27. placeholder: |
  28. What did you expect to happen instead?
  29. validations:
  30. required: false
  31. - type: textarea
  32. id: error
  33. attributes:
  34. label: Error Logs
  35. description: Paste the error logs if any. You can change the [log level](https://github.com/apache/apisix/blob/617c325628f33961be67f61f0fa8002afc370e42/docs/en/latest/FAQ.md#how-to-change-the-log-level) to get a verbose error log.
  36. validations:
  37. required: false
  38. - type: textarea
  39. id: steps
  40. attributes:
  41. label: Steps to Reproduce
  42. description: Share the steps you took so that we can reproduce the issue. Reports without proper steps details will likely be closed.
  43. placeholder: |
  44. 1. Run APISIX via the Docker image.
  45. 2. Create a Route with the Admin API.
  46. 3. Try configuring ...
  47. 4. ...
  48. validations:
  49. required: true
  50. - type: textarea
  51. id: environment
  52. attributes:
  53. label: Environment
  54. description: Share your environment details. Reports without proper environment details will likely be closed.
  55. value: |
  56. - APISIX version (run `apisix version`):
  57. - Operating system (run `uname -a`):
  58. - OpenResty / Nginx version (run `openresty -V` or `nginx -V`):
  59. - etcd version, if relevant (run `curl http://127.0.0.1:9090/v1/server_info`):
  60. - APISIX Dashboard version, if relevant:
  61. - Plugin runner version, for issues related to plugin runners:
  62. - LuaRocks version, for installation issues (run `luarocks --version`):
  63. validations:
  64. required: true