-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23dfa13
commit 884e40b
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Configuration | ||
description: Get help with configuration issues. | ||
title: "configuration: " | ||
labels: [configuration] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
To best be able to help you with your configuration-related issue, please fill out the below form. | ||
- type: checkboxes | ||
attributes: | ||
label: Did you check docs and existing issues? | ||
description: Make sure you checked all of the below before submitting an issue. | ||
options: | ||
- label: I have read the [documentation](https://github.com/fredrikaverpil/neotest-golang/blob/main/README.md). | ||
required: true | ||
- label: I have searched the existing [discussions](https://github.com/fredrikaverpil/neotest-golang/discussions). | ||
required: true | ||
- label: I have updated to the latest version of Neotest. | ||
required: true | ||
- label: I have updated to the latest version of neotest-golang. | ||
required: true | ||
- type: input | ||
attributes: | ||
label: "Neovim version (nvim -v)" | ||
placeholder: "0.10.0 commit db1b0ee3b30f" | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: "Operating system/version" | ||
placeholder: "MacOS 14.5" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Output from `:checkhealth neotest-golang` | ||
description: Please provide the output. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Your Neotest and neotest-golang Lua setup | ||
description: Please provide valid Lua code, describing how you load and configure the neotest-golang adapter. | ||
render: Lua | ||
placeholder: | | ||
return { | ||
-- your setup here | ||
} | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the problem | ||
description: | | ||
A clear and concise description of what the problem is. | ||
Please include any related errors you see in Neovim (e.g. in `:messages`) and attach any screenshots. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Configuration issue | ||
url: https://github.com/fredrikaverpil/neotest-golang/discussions/categories/configuration | ||
about: Get help setting up neotest-golang. | ||
- name: Ask a question or start a discussion | ||
url: https://github.com/fredrikaverpil/neotest-golang/discussions | ||
about: Use Github discussions instead. |