bug-report.yml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. name: 🐞 Bug Report
  2. description: Report an issue with Vben Admin to help us make it better.
  3. title: "Bug: "
  4. labels: ["bug: pending triage"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thanks for taking the time to fill out this bug report!
  10. - type: dropdown
  11. id: version
  12. attributes:
  13. label: Version
  14. description: What version of our software are you running?
  15. options:
  16. - Vben Admin V5
  17. - Vben Admin V2
  18. default: 0
  19. validations:
  20. required: true
  21. - type: textarea
  22. id: bug-desc
  23. attributes:
  24. label: Describe the bug?
  25. description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
  26. placeholder: Bug Description
  27. validations:
  28. required: true
  29. - type: textarea
  30. id: reproduction
  31. attributes:
  32. label: Reproduction
  33. description: Please provide a link to [StackBlitz](https://stackblitz.com/fork/github/vitest-dev/vitest/tree/main/examples/basic?initialPath=__vitest__/) (you can also use [examples](https://github.com/vitest-dev/vitest/tree/main/examples)) or a github repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed.
  34. placeholder: Reproduction
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: system-info
  39. attributes:
  40. label: System Info
  41. description: Output of `npx envinfo --system --npmPackages '{vue}' --binaries --browsers`
  42. render: shell
  43. placeholder: System, Binaries, Browsers
  44. validations:
  45. required: true
  46. - type: textarea
  47. id: logs
  48. attributes:
  49. label: Relevant log output
  50. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  51. render: shell
  52. - type: checkboxes
  53. id: terms
  54. attributes:
  55. label: Validations
  56. description: Before submitting the issue, please make sure you do the following
  57. # description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com).
  58. options:
  59. - label: Read the [docs](https://anncwb.github.io/vue-vben-admin-doc/)
  60. required: true
  61. - label: Ensure the code is up to date. (Some issues have been fixed in the latest version)
  62. required: true
  63. - label: I have searched the [existing issues](https://github.com/vbenjs/vue-vben-admin/issues) and checked that my issue does not duplicate any existing issues.
  64. required: true
  65. - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/vbenjs/vue-vben-admin/discussions) or join our [Discord Chat Server](https://discord.gg/8GuAdwDhj6).
  66. required: true
  67. - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
  68. required: true