1-bug-report.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. name: Bug 反馈
  2. description: 反馈您所遇到的问题,以帮助我们更好的改进
  3. labels: ["bug"]
  4. body:
  5. - type: dropdown
  6. id: addon
  7. attributes:
  8. label: 所属功能组件
  9. options:
  10. - 路由(Route)
  11. - 控制器(Controller)
  12. - 中间件(Middleware)
  13. - 容器(Container)
  14. - 服务(Service)
  15. - 门面(Facade)
  16. - 事件(Event)
  17. - 请求(Request)
  18. - 缓存(Cache)
  19. - 响应(Response)
  20. - 视图(View)
  21. - 异常(Exception)
  22. - 日志(Log)
  23. - 验证器(Validate)
  24. - 多语言(Lang)
  25. - Session/Cookie
  26. - 文件系统(Filesystem)
  27. - 命令行(Command)
  28. - 其它
  29. description: |
  30. * 模型(Model)和数据库(Db)功能请前往 https://github.com/top-think/think-orm/issues 反馈
  31. * 多应用(MultiApp)功能请前往 https://github.com/top-think/think-multi-app/issues 反馈
  32. validations:
  33. required: true
  34. - type: input
  35. id: version
  36. attributes:
  37. label: ThinkPHP 版本
  38. description: 您所使用的 ThinkPHP 版本是?
  39. placeholder: 如:8.0.3
  40. validations:
  41. required: true
  42. - type: input
  43. id: system
  44. attributes:
  45. label: 操作系统
  46. description: 您代码在什么系统上运行?
  47. placeholder: 如:Windows、Centos、Ubuntu、Debian
  48. validations:
  49. required: true
  50. - type: textarea
  51. attributes:
  52. label: 错误信息
  53. description: 如果有报错信息,请附上相关错误信息或截图。如:错误提示语、出错文件路径、出错行号和 Traces 等信息
  54. placeholder: |
  55. 信息:控制器不存在
  56. 路径:vendor/topthink/framework/src/think/App.php
  57. 行号:313
  58. Traces:
  59. ......
  60. validations:
  61. required: false
  62. - type: textarea
  63. attributes:
  64. label: 其它说明
  65. description: 如您还有其它需要补充,可在此输入。
  66. validations:
  67. required: false