Преглед на файлове

misc(GH) refresh issue / PR templates

dev0
Naman преди 7 месеца
родител
ревизия
d6f7ff7509
No account linked to committer's email address
променени са 4 файла, в които са добавени 177 реда и са изтрити 27 реда
  1. 0
    27
      .github/ISSUE_TEMPLATE/bug-report.md
  2. 75
    0
      .github/ISSUE_TEMPLATE/bug.yml
  3. 59
    0
      .github/ISSUE_TEMPLATE/enhancement.yml
  4. 43
    0
      .github/PULL_REQUEST_TEMPLATE.md

+ 0
- 27
.github/ISSUE_TEMPLATE/bug-report.md Целия файл

@@ -1,27 +0,0 @@
1
----
2
-name: Bug Report
3
-about: Before posting, please make sure you check https://community.jitsi.org
4
-
5
----
6
-
7
-*This Issue tracker is only for reporting bugs and tracking code related issues.*
8
-
9
-Before posting, please make sure you check community.jitsi.org to see if the same or similar bugs have already been discussed. General questions, installation help, and feature requests can also be posted to community.jitsi.org.
10
-
11
-## Description
12
----
13
-
14
-## Current behavior
15
----
16
-
17
-## Expected Behavior
18
----
19
-
20
-## Possible Solution
21
----
22
-
23
-## Steps to reproduce
24
----
25
-
26
-# Environment details
27
----

+ 75
- 0
.github/ISSUE_TEMPLATE/bug.yml Целия файл

@@ -0,0 +1,75 @@
1
+name: 🐛 Bug Report
2
+description: Report bugs to fix and improve.
3
+title: "[BUG] <description>"
4
+labels: ["bug"]
5
+
6
+
7
+body:
8
+  - type: textarea
9
+    id: description
10
+    attributes:
11
+      label: Describe the bug.
12
+      description: A clear and concise description of what the bug is.
13
+    validations:
14
+      required: true
15
+
16
+  - type: textarea
17
+    id: expected
18
+    attributes:
19
+      label: Expected behavior
20
+      description: A clear and concise description of what you expected to happen.
21
+    validations:
22
+      required: true
23
+
24
+
25
+  - type: textarea
26
+    id: screenshots
27
+    attributes:
28
+      label: Screenshots
29
+      description: Please add screenshots/video of the bug you faced.
30
+    validations:
31
+      required: false
32
+
33
+  - type: textarea
34
+    id: reproduce
35
+    attributes:
36
+      label: How to Reproduce
37
+      description: Attach all steps/share a github gist that can help anyone reproduce the bug.
38
+      value: |
39
+        1. I first did this
40
+        2. I then did this
41
+        3. And so on . . . 
42
+    validations:
43
+      required: true
44
+  
45
+  - type: dropdown
46
+    id: browser
47
+    attributes:
48
+      label: "🥦 Browser"
49
+      description: "What browser are you using?"
50
+      options:
51
+        - Google Chrome
52
+        - Brave
53
+        - Microsoft Edge
54
+        - Mozilla Firefox
55
+        - Safari
56
+        - Opera
57
+        - Other
58
+    validations:
59
+        required: false
60
+
61
+  - type: checkboxes
62
+    id: no-duplicate-issues
63
+    attributes:
64
+      label: "👀 Have you checked for similar open issues?"
65
+      options:
66
+        - label: "I checked and didn't find similar issue"
67
+          required: true
68
+
69
+  - type: checkboxes
70
+    id: check-Community-Forum
71
+    attributes:
72
+      label: "🏢 Have you checked the Community Forum?"
73
+      options:
74
+        - label: "please make sure you check https://community.jitsi.org"
75
+          required: true

+ 59
- 0
.github/ISSUE_TEMPLATE/enhancement.yml Целия файл

@@ -0,0 +1,59 @@
1
+name: 💡 Feature request
2
+description: Suggest an idea for improving lib-jitsi-meet
3
+labels: ["feature-request"]
4
+
5
+body:
6
+  - type: markdown
7
+    attributes:
8
+      value: |
9
+        Thank you for suggesting an idea to improve lib-jitsi-meet!
10
+
11
+        **Note**: The decision to implement features lies with the Jitsi team, and not all requests will be accepted.
12
+
13
+  - type: textarea
14
+    id: problem
15
+    attributes:
16
+      label: What problem are you trying to solve?
17
+      description: Explain the issue or limitation that this feature would address.
18
+    validations:
19
+      required: true
20
+
21
+  - type: textarea
22
+    id: solution
23
+    attributes:
24
+      label: What solution would you like to see?
25
+      description: Describe the behavior or feature you'd like to have.
26
+    validations:
27
+      required: true
28
+
29
+  - type: textarea
30
+    id: alternative
31
+    attributes:
32
+      label: Is there an alternative?
33
+      description: Describe any alternative solutions or features you have considered.
34
+    validations:
35
+      required: false
36
+
37
+  - type: textarea
38
+    id: implementation
39
+    attributes:
40
+      label: How could this be implemented?
41
+      description: Suggest how this feature could be designed or integrated.
42
+    validations:
43
+      required: false
44
+
45
+  - type: textarea
46
+    id: screenshots
47
+    attributes:
48
+      label: Screenshots
49
+      description: Please add screenshots if applicable.
50
+    validations:
51
+      required: false
52
+
53
+  - type: checkboxes
54
+    id: check-Community-Forum
55
+    attributes:
56
+      label: "🏢 Have you checked the Community Forum?"
57
+      options:
58
+        - label: "please make sure you check https://community.jitsi.org"
59
+          required: true

+ 43
- 0
.github/PULL_REQUEST_TEMPLATE.md Целия файл

@@ -0,0 +1,43 @@
1
+<!--- Provide a general summary of your changes in the Title above -->
2
+
3
+## Description
4
+
5
+<!--- Describe your changes in detail -->
6
+
7
+## Related Issue
8
+
9
+<!--- This project only accepts pull requests related to open issues -->
10
+<!--- If suggesting a new feature or change, please discuss it in an issue first -->
11
+<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
12
+<!--- Please link to the issue here: -->
13
+
14
+## Motivation and Context
15
+
16
+<!--- Why is this change required? What problem does it solve? -->
17
+
18
+## How Has This Been Tested?
19
+
20
+<!--- Please describe in detail how you tested your changes. -->
21
+<!--- Include details of your testing environment, and the tests you ran to -->
22
+<!--- see how your change affects other areas of the code, etc. -->
23
+
24
+## Screenshots or GIF (In case of UI changes):
25
+
26
+## Types of changes
27
+
28
+<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
29
+
30
+- [ ] Bug fix (non-breaking change which fixes an issue)
31
+- [ ] New feature (non-breaking change which adds functionality)
32
+- [ ] Breaking change (fix or feature that would cause existing functionality to change)
33
+
34
+## Checklist:
35
+
36
+<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
37
+<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
38
+
39
+- [ ] My code follows the code style of this project.
40
+- [ ] My change requires a change to the documentation.
41
+- [ ] I have updated the documentation accordingly.
42
+- [ ] I have added tests to cover my changes.
43
+- [ ] All new and existing tests passed.

Loading…
Отказ
Запис