feature_request.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. name: 👏 Feature Request
  2. description: Submit a request for a new feature
  3. title: '[Feature]: '
  4. labels: ['enhancement']
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thank you for taking the time to fill out this feature request! If you have a new idea or are unsure if it can be implemented, please make sure:
  10. - You have checked the latest version of the code and confirmed that the feature does not exist.
  11. - You have checked the open and closed issues to see if the feature you want to add has been described.
  12. - If there is a similar feature request in the issues list, please provide additional information in the corresponding issue.
  13. - Your description of the new feature 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 new feature 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: textarea
  30. id: description
  31. attributes:
  32. label: Feature Description
  33. description: Please describe the new feature clearly and concisely.
  34. placeholder: When...
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: example
  39. attributes:
  40. label: Example
  41. description: You can provide some similar implementations in other projects to help others understand your idea.
  42. placeholder: In...
  43. validations:
  44. required: false
  45. - type: textarea
  46. id: idea
  47. attributes:
  48. label: Your Idea
  49. description: If you have any implementation ideas or thoughts about the new feature, you can describe them here.
  50. placeholder: I think...
  51. validations:
  52. required: false