Browse Source

feat(gh) use new form based issue and feature request templates

factor2
Saúl Ibarra Corretgé 1 year ago
parent
commit
5eb4064390

+ 0
- 48
.github/ISSUE_TEMPLATE/1-bug-report.md View File

@@ -1,48 +0,0 @@
1
----
2
-name: Bug report
3
-about: Create a report to help us improve
4
-
5
----
6
-
7
-<!--
8
-
9
-This issue tracker is only for reporting bugs and tracking issues related to the source code.
10
-
11
-Before posting, please make sure to check if the same or similar bugs have already been discussed: https://github.com/jitsi/jitsi-meet/issues
12
-
13
-General questions regarding usage, installation, etc. should be posted at https://community.jitsi.org. They will be closed if posted here.
14
-
15
--->
16
-
17
-### Description:
18
-
19
-<!-- Please describe the bug clearly and concisely. -->
20
-
21
-### Steps to reproduce:
22
-
23
-1. <!-- Open '...' -->
24
-2. <!-- Click on '...' -->
25
-3. <!-- and so on... -->
26
-
27
-### Expected behavior:
28
-
29
-<!-- Please describe what should happen. -->
30
-
31
-### Actual behavior:
32
-
33
-<!-- Please describe what actually happens. -->
34
-<!-- Please attach screenshot if possible. -->
35
-
36
-### Server information:
37
-
38
-- Jitsi Meet version:
39
-- Operating System:
40
-
41
-### Client information:
42
-
43
-- Browser / app version:
44
-- Operating System:
45
-
46
-### Additional information:
47
-
48
-<!-- Please provide additional information about the bug, if any. -->

+ 55
- 0
.github/ISSUE_TEMPLATE/1-bug.yml View File

@@ -0,0 +1,55 @@
1
+name: Bug report
2
+description: File a bug report and help us improve
3
+body:
4
+  - type: markdown
5
+    attributes:
6
+      value: |
7
+        This issue tracker is only for reporting bugs and tracking issues related to the source code.
8
+
9
+        **Before posting, please make sure to check if the same or similar bugs have already been reported.**
10
+
11
+        ⚠️ General questions regarding usage, installation, etc. should be posted in our [community forum](https://community.jitsi.org).
12
+  - type: textarea
13
+    attributes:
14
+      label: What happened?
15
+      description: Please describe the problem. Be as detailed as possible.
16
+    validations:
17
+      required: true
18
+  - type: checkboxes
19
+    attributes:
20
+      label: Platform
21
+      description: On what platforms can you reproduce the problem?
22
+      options:
23
+        - label: Chrome (or Chromium based)
24
+        - label: Firefox
25
+        - label: Safari
26
+        - label: Other desktop browser
27
+        - label: Android browser
28
+        - label: iOS browser
29
+        - label: Electron app
30
+        - label: Android mobile app
31
+        - label: iOS mobile app
32
+        - label: Custom app using a mobile SDK
33
+    validations:
34
+      required: true
35
+  - type: input
36
+    attributes:
37
+      label: Browser / app / sdk version
38
+      description: Please provice the version of the browser / app / sdk where the problem manifests.
39
+    validations:
40
+      required: true
41
+  - type: textarea
42
+    attributes:
43
+      label: Relevant log output
44
+      description: Please copy and paste any relevant log output. The browser console JS logs (if applicable) is a good start. This will be automatically formatted into code, so no need for backticks.
45
+      render: shell
46
+  - type: checkboxes
47
+    attributes:
48
+      label: Reproducibility
49
+      description: Does the problem reproduce on meet.jit.si using Chrome, Firefox or the official mobile apps?
50
+      options:
51
+        - label: The problem is reproducible on meet.jit.si
52
+  - type: textarea
53
+    attributes:
54
+      label: More details?
55
+      description: Please provide more details in case they apply (such as the Jitsi Meet version you are running, if you are hosting your own server).

+ 0
- 25
.github/ISSUE_TEMPLATE/2-feature-request.md View File

@@ -1,25 +0,0 @@
1
----
2
-name: "Feature request"
3
-about: Suggest an idea for this project
4
-title: ''
5
-labels: 'feature-request'
6
-assignees: ''
7
----
8
-
9
-<!--
10
-Thank you for suggesting an idea to make Jitsi Meet better.
11
-
12
-Please fill in as much of the template below as you're able.
13
-
14
-Note that the ultimate decision for implementing features lies on the Jitsi team, not all feature requests shall be accepted.
15
--->
16
-
17
-**Is your feature request related to a problem you are facing?**
18
-Please describe the problem you are trying to solve.
19
-
20
-**Describe the solution you'd like**
21
-Please describe the desired behavior.
22
-
23
-**Describe alternatives you've considered**
24
-Please describe alternative solutions or features you have considered.
25
-

+ 22
- 0
.github/ISSUE_TEMPLATE/2-feature.yml View File

@@ -0,0 +1,22 @@
1
+name: Feature request
2
+description: Suggest an idea for Jitsi Meet
3
+labels: ["feature-request"]
4
+body:
5
+  - type: markdown
6
+    attributes:
7
+      value: |
8
+        Thank you for suggesting an idea to make Jitsi Meet better.
9
+
10
+        **Note**: the ultimate decision for implementing features lies on the Jitsi team, not all feature requests shall be accepted.
11
+  - type: textarea
12
+    attributes:
13
+      label: What problem are you trying to solve?
14
+      description: Tell us what problem your feature request would solve.
15
+  - type: textarea
16
+    attributes:
17
+      label: What solution would you like to see?
18
+      description: Please describe the desired behavior or feature.
19
+  - type: textarea
20
+    attributes:
21
+      label: Is there an alternative?
22
+      description: Please describe alternative solutions or features you have considered.

+ 2
- 2
.github/ISSUE_TEMPLATE/config.yml View File

@@ -1,5 +1,5 @@
1 1
 blank_issues_enabled: false
2 2
 contact_links:
3
-  - name: Need help with Jitsi Meet?
3
+  - name: Need help with your Jitsi Meet installation?
4 4
     url: https://community.jitsi.org
5
-    about: Please ask it in our community.
5
+    about: Please ask it in our community forum.

Loading…
Cancel
Save