general-issue-form.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. name: General Issue
  2. description: File a bug report
  3. title: "[Bug]: "
  4. labels: [bug]
  5. # assignees:
  6. # - ChristianChiarulli
  7. body:
  8. - type: markdown
  9. attributes:
  10. value: |
  11. Thank you for helping us improve !
  12. - type: textarea
  13. id: problem-description
  14. attributes:
  15. label: Problem description
  16. description: Also tell us, what did you expect to happen?
  17. placeholder: |
  18. Steps to reproduce the behavior:
  19. 1. Go to '...'
  20. 2. Click on '....'
  21. 3. Scroll down to '....'
  22. 4. See error
  23. validations:
  24. required: true
  25. - type: input
  26. id: lunar-vim-version
  27. attributes:
  28. label: LunarVim version
  29. validations:
  30. required: true
  31. - type: input
  32. id: nvim-version
  33. attributes:
  34. label: Neovim version (>= 0.5)
  35. placeholder: nvim --version
  36. validations:
  37. required: true
  38. - type: textarea
  39. id: logs
  40. attributes:
  41. label: Relevant log output
  42. placeholder: |
  43. nvim -v
  44. :checkhealth
  45. :messages
  46. render: shell
  47. - type: textarea
  48. id: screenshots
  49. attributes:
  50. label: Screenshots
  51. description: If applicable, add screenshots to help explain your problem
  52. - type: checkboxes
  53. id: checks
  54. attributes:
  55. label: I have
  56. options:
  57. - label: Read the readme
  58. required: true
  59. - label: Read the wiki
  60. required: true
  61. - label: Searched for similar issues
  62. required: true