bug_report.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. name: 🐞 Bug Report
  2. description: Report an issue with STDF
  3. labels: [Uncategorized]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for taking the time to fill out this bug report! If you have a usage question or are unsure if it's really a bug, please make sure:
  9. - You are using the latest version of the code.
  10. - You have checked the open and closed issues to see if your issue has already been reported.
  11. - If there is a similar issue in the issues list, please provide additional information in the corresponding issue.
  12. - Your description of the problem is concise and clear, not just from your own perspective.
  13. - type: dropdown
  14. id: module
  15. attributes:
  16. label: Module
  17. description: Which module does this bug belong to?
  18. options:
  19. - stdf (STDF component, default)
  20. - create (create-stdf scaffolding)
  21. - vscode (STDF VS Code plugin)
  22. - icon (rollup-plugin-stdf-icon plugin)
  23. - site (STDF website)
  24. - demo (STDF demo)
  25. - other (other)
  26. validations:
  27. required: true
  28. - type: input
  29. id: version
  30. attributes:
  31. label: Version
  32. description: If it is [stdf] [create] [icon] [vscode], please indicate the version in which this bug occurred.
  33. validations:
  34. required: false
  35. - type: textarea
  36. id: bug-description
  37. attributes:
  38. label: Bug Description
  39. description: Please describe the bug clearly and concisely.
  40. placeholder: When...
  41. validations:
  42. required: true
  43. - type: textarea
  44. id: reproduction
  45. attributes:
  46. label: Reproduction
  47. description: You can use text/images/short videos to explain how to reproduce the issue, but please provide a series of information about the environment where the problem occurs, such as device model and version, operating system and version, browser, etc. You can also use [StackBlitz](https://stackblitz.com) or [CodePen](https://codepen.io) or other online IDEs to quickly create a project to demonstrate the bug. In short, make it easy for others to understand how to reproduce the bug.
  48. placeholder: On iPhone 13 Pro with iOS 16...
  49. validations:
  50. required: true
  51. - type: textarea
  52. id: idea
  53. attributes:
  54. label: Your Idea
  55. description: If you have a solution or idea for this bug, you can describe it here.
  56. placeholder: I think...
  57. validations:
  58. required: false