bug_report.yml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. - demo (STDF demo)
  25. - doc (STDF site and documentation)
  26. - other (other)
  27. validations:
  28. required: true
  29. - type: input
  30. id: version
  31. attributes:
  32. label: Version
  33. description: If it is stdf/create/icon/vscode, please indicate the version in which this bug occurred.
  34. validations:
  35. required: false
  36. - type: textarea
  37. id: bug-description
  38. attributes:
  39. label: Bug Description
  40. description: Please describe the bug clearly and concisely.
  41. placeholder: When...
  42. validations:
  43. required: true
  44. - type: textarea
  45. id: reproduction
  46. attributes:
  47. label: Reproduction
  48. 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.
  49. placeholder: On iPhone 13 Pro with iOS 16...
  50. validations:
  51. required: true
  52. - type: textarea
  53. id: idea
  54. attributes:
  55. label: Your Idea
  56. description: If you have a solution or idea for this bug, you can describe it here.
  57. placeholder: I think...
  58. validations:
  59. required: false