feature_request.yml 954 B

123456789101112131415161718192021222324252627282930313233
  1. name: Feature request
  2. description: Suggest an improvement or a feature
  3. title: "[FEATURE]: "
  4. labels: ["enhancement"]
  5. body:
  6. - type: textarea
  7. id: featuredesc
  8. attributes:
  9. label: Feature Description
  10. description: A general description of the feature
  11. validations:
  12. required: true
  13. - type: textarea
  14. id: featuresteps
  15. attributes:
  16. label: Steps how to use this feature
  17. description: A step by step list how to utilize this feature. How exactly do you imagine users use it and what result they can expect?
  18. value: |
  19. 1.
  20. 2.
  21. 3.
  22. ...
  23. render: bash
  24. validations:
  25. required: false
  26. - type: checkboxes
  27. id: terms
  28. attributes:
  29. label: Code of Conduct
  30. description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/PixiEditor/PixiEditor/blob/master/CODE_OF_CONDUCT.md).
  31. options:
  32. - label: I agree to follow this project's Code of Conduct
  33. required: true