From 00972980e64134d222bf953d40c6d78bf29aece0 Mon Sep 17 00:00:00 2001 From: PikaMug <2267126+PikaMug@users.noreply.github.com> Date: Sun, 26 Dec 2021 08:25:03 -0500 Subject: [PATCH] Update remaining templates --- .github/ISSUE_TEMPLATE/ask_question.md | 12 ------------ .github/ISSUE_TEMPLATE/ask_question.yml | 22 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 12 ------------ .github/ISSUE_TEMPLATE/feature_request.yml | 22 ++++++++++++++++++++++ 4 files changed, 44 insertions(+), 24 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/ask_question.md create mode 100644 .github/ISSUE_TEMPLATE/ask_question.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/ask_question.md b/.github/ISSUE_TEMPLATE/ask_question.md deleted file mode 100644 index 4c747ab0b..000000000 --- a/.github/ISSUE_TEMPLATE/ask_question.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -name: Ask a question -about: if it's complex or code-related. -labels: question ---- - - -**Where else have you looked for answers to this question?** - -**Share your question with as much detail as possible?** diff --git a/.github/ISSUE_TEMPLATE/ask_question.yml b/.github/ISSUE_TEMPLATE/ask_question.yml new file mode 100644 index 000000000..fa3466455 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ask_question.yml @@ -0,0 +1,22 @@ +name: Ask a question +description: if it's complex or code-related. +labels: [question] +body: + - type: markdown + attributes: + value: | + Thanks for inquiring about the project! Please answer the following questions: + - type: 'textarea' + attributes: + label: 'Where else have you looked for answers to this question?' + description: 'Such as the documentation or an Internet search.' + placeholder: 'I looked for an answer in...' + validations: + required: true + - type: 'textarea' + attributes: + label: 'Share your question with as much detail as possible.' + description: 'Every question is a cry to understand the world.' + placeholder: 'I could not figure out...' + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bc94ee2ea..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -name: Suggest a feature -about: once you know all the details. -labels: enhancement ---- - - -**What does your feature do?** - -**How would people use it?** diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..eb3ab58db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,22 @@ +name: Suggest a feature +description: once you know all the details. +labels: [enhancement] +body: + - type: markdown + attributes: + value: | + Thanks for sharing your idea! Please answer the following questions: + - type: 'textarea' + attributes: + label: 'What does your feature do?' + description: 'Be certain it does not already exist.' + placeholder: 'My new idea is...' + validations: + required: true + - type: 'textarea' + attributes: + label: 'How would people use it?' + description: 'Consider ways it would benefit all.' + placeholder: 'It would be used when...' + validations: + required: true