diff options
| author | Frank LENORMAND <lenormf@gmail.com> | 2021-09-13 12:08:33 +0300 |
|---|---|---|
| committer | Frank LENORMAND <lenormf@gmail.com> | 2021-09-13 12:09:36 +0300 |
| commit | 2a4bee4564253ee2b22b8886710f10cef4fb4c2c (patch) | |
| tree | 4128b5f63c9bcb3d6c6686444455e2e5f793a3a1 | |
| parent | b05e300e9650e8bdbd5364dff7a54be2de1f5afa (diff) | |
github question: Migrate template to YAML
| -rw-r--r-- | .github/ISSUE_TEMPLATE/question.md | 13 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/question.yml | 19 |
2 files changed, 19 insertions, 13 deletions
diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 73c2f38b..00000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -name: Question -about: Couldn't find an answer in the documentation? Ask away! -labels: question ---- - -<!-- -Please make sure that you check the onboard documentation (`:doc …`), -the community wiki (hosted on Github) and other issues before creating an -issue for your question. - -You can also drop by our IRC channel to get instant (hopefully) feedback. ---> diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml new file mode 100644 index 00000000..aa1c82a8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -0,0 +1,19 @@ +name: Question +description: Couldn't find an answer in the documentation? Ask away! +labels: question +title: "[QUESTION] " +body: + + - type: markdown + attributes: + value: | + Please make sure to [search issues](https://github.com/mawww/kakoune/issues?q=is%3Aissue) before creating a new one, to avoid duplicates and centralise conversations. + + If you need to have a question about the editor itself (options, behaviour, code…) answered, make sure to check the [documentation](https://github.com/mawww/kakoune/tree/master/doc/pages) (also available via the `doc` command in the editor) or drop by [IRC](https://web.libera.chat/?channels=#kakoune) to get instant feedback. + + - type: textarea + attributes: + label: "Question" + description: "Couldn't find an answer in the documentation? Ask away!" + validations: + required: true |
