From 651f7d67d76e728e12c4b91aa45a20c0f6b3dc21 Mon Sep 17 00:00:00 2001
From: Mehdi Nassim KHODJA <18899702+naskio@users.noreply.github.com>
Date: Tue, 31 Oct 2023 11:18:13 +0100
Subject: [PATCH 1/3] add ISSUE_TEMPLATE/feature_request.yml
---
.github/ISSUE_TEMPLATE/feature_request.yml | 37 ++++++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 000000000..67374958e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,37 @@
+name: Feature request
+description: Suggest a new idea for FastTrackML
+title: "[FEATURE REQUEST]:
"
+labels: [ "feature" ]
+
+body:
+ - type: textarea
+ id: related-problem
+ attributes:
+ label: Is your feature request related to a problem? Please describe.
+ description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+ validations:
+ required: true
+
+ - type: textarea
+ id: describe-solution
+ attributes:
+ label: Describe the solution you'd like
+ description: A clear and concise description of what you want to happen.
+ validations:
+ required: true
+
+ - type: textarea
+ id: describe-alternatives
+ attributes:
+ label: Describe alternatives you've considered
+ description: A clear and concise description of any alternative solutions or features you've considered.
+ validations:
+ required: false
+
+ - type: textarea
+ id: additional-context
+ attributes:
+ label: Additional context
+ description: Add any other context or screenshots about the feature request here.
+ validations:
+ required: false
From 12f80d2e2b7971a580fd90e12375c9d084982081 Mon Sep 17 00:00:00 2001
From: Juan Escalada
Date: Tue, 16 Apr 2024 08:40:44 -0700
Subject: [PATCH 2/3] Clarify feature request fields
---
.github/ISSUE_TEMPLATE/feature_request.yml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
index 67374958e..6af96b239 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -8,15 +8,17 @@ body:
id: related-problem
attributes:
label: Is your feature request related to a problem? Please describe.
- description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+ description: A clear and concise description of what the problem is.
+ placeholder: ex. I'm always frustrated when [...]
validations:
- required: true
+ required: false
- type: textarea
- id: describe-solution
+ id: describe-solution-or-desired-feature
attributes:
- label: Describe the solution you'd like
+ label: Describe the solution/feature you'd like
description: A clear and concise description of what you want to happen.
+ placeholder: ex. I wish I could [...]
validations:
required: true
From 335ab91d1917a250260b67c82580c55fba236793 Mon Sep 17 00:00:00 2001
From: Juan Escalada
Date: Tue, 16 Apr 2024 08:43:42 -0700
Subject: [PATCH 3/3] Switch feature description order
---
.github/ISSUE_TEMPLATE/feature_request.yml | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
index 6af96b239..82da81326 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -5,22 +5,22 @@ labels: [ "feature" ]
body:
- type: textarea
- id: related-problem
+ id: describe-desired-feature
attributes:
- label: Is your feature request related to a problem? Please describe.
- description: A clear and concise description of what the problem is.
- placeholder: ex. I'm always frustrated when [...]
+ label: Describe the feature you'd like
+ description: A clear and concise description of what you want to happen.
+ placeholder: ex. I wish I could [...]
validations:
- required: false
+ required: true
- type: textarea
- id: describe-solution-or-desired-feature
+ id: related-problem
attributes:
- label: Describe the solution/feature you'd like
- description: A clear and concise description of what you want to happen.
- placeholder: ex. I wish I could [...]
+ label: Is your feature request related to a problem? Please describe
+ description: A clear and concise description of what the problem is.
+ placeholder: ex. I'm always frustrated when [...]
validations:
- required: true
+ required: false
- type: textarea
id: describe-alternatives