feature_request.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. name: "Feature request"
  2. description: "Create a new Feature Request. Do you want to suggest a new feature? Use this form."
  3. title: "Think about the title, twice."
  4. labels: ["unconfirmed"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. - Please provide a minimal code example that illustrates the basic idea behind your feature request.
  10. Reports with full repro code and descriptive detailed information will likely receive feedback faster.
  11. - There is a separate repository for the detailed RFCs and proposals: https://github.com/nim-lang/RFCs.
  12. If you have a simple feature request, you can post it here using this form,
  13. but bear in mind that adding new features to the language is currently a low priority.
  14. - type: textarea
  15. id: summary
  16. attributes:
  17. label: Summary
  18. description: |
  19. Use DETAILED DESCRIPTIVE information about the feature request.
  20. Here, you go into more details about your ideas. This section can be a few paragraphs long.
  21. placeholder: Short summary of your proposed feature.
  22. validations:
  23. required: true
  24. - type: textarea
  25. id: description
  26. attributes:
  27. label: Description
  28. description: Describe your solution, what problem does it fix?
  29. validations:
  30. required: true
  31. - type: textarea
  32. id: alternatives
  33. attributes:
  34. label: Alternatives
  35. description: Are there any alternatives you've considered?
  36. validations:
  37. required: false
  38. - type: textarea
  39. id: Examples
  40. attributes:
  41. label: Examples
  42. description: Provide examples for your feature request here.
  43. placeholder: Example code here.
  44. - type: textarea
  45. id: incompatibility
  46. attributes:
  47. label: Backwards Compatibility
  48. description: If your Feature Request introduces backward-incompatible changes, describe them and propose how to deal with them.
  49. validations:
  50. required: false
  51. - type: textarea
  52. id: links
  53. attributes:
  54. label: Links
  55. description: Please copy and paste any relevant links to projects, issues, discussions, technical documentations, code samples, etc.
  56. validations:
  57. required: false
  58. - type: markdown
  59. attributes:
  60. value: |
  61. - Thanks for your contributions!, your ideas will receive feedback from the community soon...
  62. - **Remember to :star: Star the Nim project on GitHub!.**
  63. - Consider writing a PR targetting devel branch after filing this, see [contributing](https://nim-lang.github.io/Nim/contributing.html).
  64. - [Please, consider a Donation for the Nim project.](https://nim-lang.org/donate.html)