summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-03 16:34:43 -0400
committerchristianchiarulli <[email protected]>2021-07-03 16:34:43 -0400
commit8f37e7f2784b56d918f64960fd7b5c02947904f4 (patch)
tree779334acd01341786e81f00140a18bd91403b168 /.github
parent703fdfd48d966c8a74085e9d77816fa76070b65a (diff)
parent80bda1932308dcaac74958ef771a9c060446f093 (diff)
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/general-issue-form.yaml60
1 files changed, 60 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
new file mode 100644
index 00000000..4571fa12
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
@@ -0,0 +1,60 @@
+name: General Issue
+description: File a bug report
+title: "[Bug]: "
+labels: [bug]
+# assignees:
+# - ChristianChiarulli
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thank you for helping us improve !
+ - type: textarea
+ id: problem-description
+ attributes:
+ label: Problem description
+ description: Also tell us, what did you expect to happen?
+ placeholder: |
+ Steps to reproduce the behavior:
+ 1. Go to '...'
+ 2. Click on '....'
+ 3. Scroll down to '....'
+ 4. See error
+ validations:
+ required: true
+ - type: input
+ id: lunar-vim-version
+ attributes:
+ label: LunarVim version
+ validations:
+ required: true
+ - type: input
+ id: nvim-version
+ attributes:
+ label: Neovim version (>= 0.5)
+ placeholder: nvim --version
+ validations:
+ required: true
+ - type: textarea
+ id: logs
+ attributes:
+ label: Relevant log output
+ placeholder: |
+ nvim -v
+ :checkhealth
+ :messages
+ render: shell
+ - type: textarea
+ id: screenshots
+ attributes:
+ label: Screenshots
+ description: If applicable, add screenshots to help explain your problem
+ - type: checkboxes
+ id: checks
+ attributes:
+ label: I have read
+ options:
+ - label: The readme
+ required: true
+ - label: The wiki
+ required: true