From cd0e4a88d86d2221cd2e40fe72415794a231a6af Mon Sep 17 00:00:00 2001 From: VNMabus Date: Wed, 17 Jan 2024 09:18:53 +0100 Subject: [PATCH] Add issue template for features. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 20 ------------- .github/ISSUE_TEMPLATE/feature_request.yml | 35 ++++++++++++++++++++++ 3 files changed, 36 insertions(+), 21 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 037e768..e7dc767 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: Bug report description: Create a report to help us reproduce and fix a bug -labels: bug +labels: [bug] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 11fc491..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..2bb2d2a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,35 @@ +name: Feature request +description: Suggest an idea for this project +labels: [enhancement] + +body: +- type: markdown + attributes: + value: > + #### Please check that this idea has not been proposed previously, by searching through the [issues list](https://github.com/vnmabus/rdata/issues). +- type: textarea + attributes: + label: Motivation + description: > + A clear and concise description of what the problem is. Ex. I am always frustrated when [...] + validations: + required: true +- type: textarea + attributes: + label: Desired functionality + description: > + A clear and concise description of what you want to happen. + validations: + required: true +- type: textarea + attributes: + label: Alternatives + description: > + A clear and concise description of any alternative solutions or features you have considered. + validations: + required: false +- type: textarea + attributes: + label: Additional context + description: > + Add any other context about the problem here.