bug_report.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. name: 🐞 Bug Report
  2. description: Report an issue with STDF
  3. title: '[Bug]: '
  4. labels: ['bug']
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 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:
  10. - You are using the latest version of the code.
  11. - You have checked the open and closed issues to see if your issue has already been reported.
  12. - If there is a similar issue in the issues list, please provide additional information in the corresponding issue.
  13. - Your description of the problem is concise and clear, not just from your own perspective.
  14. - type: dropdown
  15. id: module
  16. attributes:
  17. label: Module
  18. description: Which module does this bug belong to?
  19. options:
  20. - stdf (STDF component)
  21. - create (create-stdf scaffolding)
  22. - vscode (STDF VS Code plugin)
  23. - icon (rollup-plugin-stdf-icon plugin)
  24. - md (rollup-plugin-md-ts plugin)
  25. - demo (STDF demo)
  26. - doc (STDF site and documentation)
  27. - other (other)
  28. validations:
  29. required: true
  30. - type: input
  31. id: version
  32. attributes:
  33. label: Version
  34. description: If it is stdf/create/icon/vscode/md, please indicate the version in which this bug occurred.
  35. validations:
  36. required: false
  37. - type: textarea
  38. id: bug-description
  39. attributes:
  40. label: Bug Description
  41. description: Please describe the bug clearly and concisely.
  42. placeholder: When...
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: reproduction
  47. attributes:
  48. label: Reproduction
  49. 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.
  50. placeholder: On iPhone 13 Pro with iOS 16...
  51. validations:
  52. required: true
  53. - type: textarea
  54. id: idea
  55. attributes:
  56. label: Your Idea
  57. description: If you have a solution or idea for this bug, you can describe it here.
  58. placeholder: I think...
  59. validations:
  60. required: false