1-bug-report.yml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. - 服务(Service)
  14. - 门面(Facade)
  15. - 事件(Event)
  16. - 请求(Request)
  17. - 缓存(Cache)
  18. - 响应(Response)
  19. - 视图(View)
  20. - 异常(Exception)
  21. - 日志(Log)
  22. - 多语言(Lang)
  23. - Session/Cookie
  24. - 命令行(Command)
  25. - 其它
  26. description: |
  27. * 模型(Model)和数据库(Db)功能请前往 https://github.com/top-think/think-orm/issues 反馈
  28. * 多应用(MultiApp)功能请前往 https://github.com/top-think/think-multi-app/issues 反馈
  29. * 容器(Container)功能请前往 https://github.com/top-think/think-container/issues 反馈
  30. * 验证器(Validate)功能请前往 https://github.com/top-think/think-validate/issues 反馈
  31. * 文件系统(Filesystem)功能请前往 https://github.com/top-think/think-filesystem/issues 反馈
  32. * Swoole 功能请前往 https://github.com/top-think/think-swoole/issues 反馈
  33. validations:
  34. required: true
  35. - type: input
  36. id: version
  37. attributes:
  38. label: ThinkPHP 版本
  39. description: 您所使用的 ThinkPHP 版本是?
  40. placeholder: 如:8.0.3
  41. validations:
  42. required: true
  43. - type: input
  44. id: system
  45. attributes:
  46. label: 操作系统
  47. description: 您代码在什么系统上运行?
  48. placeholder: 如:Windows、Centos、Ubuntu、Debian
  49. validations:
  50. required: true
  51. - type: textarea
  52. attributes:
  53. label: 错误信息
  54. description: 如果有报错信息,请附上相关错误信息或截图。如:错误提示语、出错文件路径、出错行号和 Traces 等信息
  55. placeholder: |
  56. 信息:控制器不存在
  57. 路径:vendor/topthink/framework/src/think/App.php
  58. 行号:313
  59. Traces:
  60. ......
  61. validations:
  62. required: false
  63. - type: textarea
  64. attributes:
  65. label: 其它说明
  66. description: 如您还有其它需要补充,可在此输入。
  67. validations:
  68. required: false