FEATURE_REQUEST.yml 721 B

123456789101112131415161718192021222324252627282930
  1. name: Feature Request
  2. description: Request a new feature or a change to an existing feature
  3. labels: [enhancement]
  4. body:
  5. - type: textarea
  6. id: feature
  7. attributes:
  8. label: What do you want to change?
  9. placeholder: Tell us what you want
  10. value: "Free unicorns!"
  11. validations:
  12. required: true
  13. - type: dropdown
  14. id: engines
  15. attributes:
  16. label: What database engines need to be changed?
  17. multiple: true
  18. options:
  19. - PostgreSQL
  20. - MySQL
  21. - SQLite
  22. - type: dropdown
  23. id: languages
  24. attributes:
  25. label: What programming language backends need to be changed?
  26. multiple: true
  27. options:
  28. - Go
  29. - Python
  30. - Kotlin