add feature request form (#12119)
Ilya Mashchenko committed
Feb 11, 2022 at 23:27 UTC
48b021d1339f6b1496993612be664ebf437b3b7a
2 files changed
+63
-1
.github/ISSUE_TEMPLATE/BUG_REPORT.yml
+1
-1
@@ -1,4 +1,4 @@
1
-name: "Bug report: Netdata"
1
+name: "Netdata Agent: Bug report"
2
description: "Submit a report and help us improve our free and open-source Netdata Agent"
3
title: "[Bug]: "
4
labels: ["bug", "needs triage"]
.github/ISSUE_TEMPLATE/FEAT_REQUEST.yml
new
+62
@@ -0,0 +1,62 @@
1
+name: "Netdata Agent: Feature request"
2
+description: "Submit a feature request and help us improve our free and open-source Netdata Agent"
3
+title: "[Feat]: "
4
+labels: ["feature request", "needs triage"]
5
+body:
6
+ - type: markdown
7
+ attributes:
8
+ value: "### Thank you for contributing to our project!"
9
+ - type: markdown
10
+ attributes:
11
+ value: |
12
+ Submit a feature request and help us improve our free and open-source Netdata Agent.
13
+ - type: textarea
14
+ id: problem
15
+ attributes:
16
+ label: Problem
17
+ description: |
18
+ Is your feature request intended to solve a problem? If so, provide a description of the problem.
19
+ validations:
20
+ required: false
21
+ - type: textarea
22
+ id: description
23
+ attributes:
24
+ label: Description
25
+ description: |
26
+ Provide a clear and concise description of the feature you want or need.
27
+ validations:
28
+ required: true
29
+ - type: dropdown
30
+ id: importance
31
+ attributes:
32
+ label: Importance
33
+ description: |
34
+ Help us to understand the importance of your feature request. Choose "blocker" if lack of this feature stops you from using Netdata Agent.
35
+ options:
36
+ - "nice to have"
37
+ - "really want"
38
+ - "must have"
39
+ - "blocker"
40
+ validations:
41
+ required: true
42
+ - type: textarea
43
+ id: value-proposition
44
+ attributes:
45
+ label: Value proposition
46
+ description: |
47
+ Help us to understand why we need this feaure. Describe benefits that users receive if we implement this feature request.
48
+ value: |
49
+ 1.
50
+ 2.
51
+ 3.
52
+ ...
53
+ validations:
54
+ required: true
55
+ - type: textarea
56
+ id: proposed-implementation
57
+ attributes:
58
+ label: Proposed implementation
59
+ description: |
60
+ Share your proposal if you have any ideas on how this feature can be implemented.
61
+ validations:
62
+ required: false