feature_request.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. - 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: textarea
  31. id: description
  32. attributes:
  33. label: Feature Description
  34. description: Please describe the new feature clearly and concisely.
  35. placeholder: When...
  36. validations:
  37. required: true
  38. - type: textarea
  39. id: example
  40. attributes:
  41. label: Example
  42. description: You can provide some similar implementations in other projects to help others understand your idea.
  43. placeholder: In...
  44. validations:
  45. required: false
  46. - type: textarea
  47. id: idea
  48. attributes:
  49. label: Your Idea
  50. description: If you have any implementation ideas or thoughts about the new feature, you can describe them here.
  51. placeholder: I think...
  52. validations:
  53. required: false