Browse Source

Update feature_request.md

Krzysztof Krysiński 5 months ago
parent
commit
9985d25077
1 changed files with 35 additions and 17 deletions
  1. 35 17
      .github/ISSUE_TEMPLATE/feature_request.md

+ 35 - 17
.github/ISSUE_TEMPLATE/feature_request.md

@@ -1,17 +1,35 @@
----
-name: Feature request
-about: Suggest an idea for this project
-
----
-
-**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.
+name: "Feature request"
+description: "Suggest an improvement or a feature"
+title: "[FEATURE]: "
+labels: ["enhancement"]
+body:
+- type: textarea
+  id: featuredesc
+  attributes:
+    label: Feature Description
+    description: "A general description of the feature"
+    placeholder: ""
+  validations:
+    required: true
+body:
+- type: textarea
+  id: featuresteps
+  attributes:
+    label: Steps how to use this feature
+    description: "A step by step list how to utilize this feature. How exactly do you imagine users use it and what result they can expect?"
+    value: |
+      1.
+      2.
+      3.
+      ...
+    render: bash
+  validations:
+    required: false
+  - type: checkboxes
+    id: terms
+    attributes:
+      label: Code of Conduct
+      description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/PixiEditor/PixiEditor/blob/master/CODE_OF_CONDUCT.md). 
+      options:
+        - label: I agree to follow this project's Code of Conduct
+          required: true