bug_report.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. name: "\U0001F41E Bug report"
  2. description: Create a report to help us improve
  3. labels: ['bug: pending triage']
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thanks for taking the time to fill out this bug report!
  9. Please note that Vuex is now in maintenance mode and we will only prioritize critical issues.
  10. Consider checking out [Pinia](https://pinia.vuejs.org/) for a more type-friendly and actively
  11. maintained alternative.
  12. - type: input
  13. id: version
  14. attributes:
  15. label: Version
  16. description: What version of Vuex is used in your project?
  17. validations:
  18. required: true
  19. - type: textarea
  20. id: bug-description
  21. attributes:
  22. label: Describe the bug
  23. 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!
  24. placeholder: Bug description
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: reproduction
  29. attributes:
  30. label: Reproduction
  31. description: Steps to reproduce the behavior.
  32. placeholder: Reproduction
  33. validations:
  34. required: true
  35. - type: textarea
  36. id: expected
  37. attributes:
  38. label: Expected behavior
  39. description: A clear and concise description of what you expected to happen.
  40. placeholder: Expected behavior
  41. validations:
  42. required: true
  43. - type: textarea
  44. id: additional-context
  45. attributes:
  46. label: Additional context
  47. description: Add any other context or screenshots about the bug report here.
  48. - type: checkboxes
  49. id: checkboxes
  50. attributes:
  51. label: Validations
  52. description: Before submitting the issue, please make sure you do the following
  53. options:
  54. - label: Follow our [Code of Conduct](https://vuejs.org/about/coc.html)
  55. required: true
  56. - label: Read the [docs](https://vuex.vuejs.org/).
  57. required: true
  58. - label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  59. required: true