Sfoglia il codice sorgente

test: issue form yml

pointhalo 3 anni fa
parent
commit
4308fed067
1 ha cambiato i file con 55 aggiunte e 47 eliminazioni
  1. 55 47
      .github/ISSUE_TEMPLATE/3.bug_report_form.yml

+ 55 - 47
.github/ISSUE_TEMPLATE/3.bug_report_form.yml

@@ -1,51 +1,59 @@
-name: Bug Report
-description: File a bug report
-title: "[Bug]: <title>"
-labels: ["bug"]
+name: 🐞 Bug
+description: File a bug/issue
+title: "[BUG] <title>"
+labels: [Bug, Needs Triage]
 body:
-- type: markdown
-    attributes:
-      value: |
-        Thanks for taking the time to fill out this bug report!
-- type: input
-    id: component
-    attributes:
-      label: Which Component
-      description: 
-      placeholder: Tell us which component has bug
-    validations:
-      required: true
-- type: input
-    id: semi-version
-    attributes:
-      label: Semi Version
-      description: 
-      placeholder: Which version you using 
-    validations:
+- type: checkboxes
+  attributes:
+    label: Is there an existing issue for this?
+    description: Please search to see if an issue already exists for the bug you encountered.
+    options:
+    - label: I have searched the existing issues
       required: true
 - type: textarea
-    id: what-happened
-    attributes:
-      label: What happened?
-      placeholder: Tell us what you see!
-      value: "something wrong"
-    validations:
-      required: true
+  attributes:
+    label: Current Behavior
+    description: A concise description of what you're experiencing.
+  validations:
+    required: false
 - type: textarea
-    id: expected-result
-    attributes:
-      label: Expected result
-      description: What did you expect to happen?
-      value: "should work fine"
-    validations:
-      required: true
-- type: dropdown
-    id: browsers
-    attributes:
-      label: What browsers are you seeing the problem on?
-      multiple: true
-      options:
-        - Firefox
-        - Chrome
-        - Safari
-        - Microsoft Edge
+  attributes:
+    label: Expected Behavior
+    description: A concise description of what you expected to happen.
+  validations:
+    required: false
+- type: textarea
+  attributes:
+    label: Steps To Reproduce
+    description: Steps to reproduce the behavior.
+    placeholder: |
+      1. In this environment...
+      2. With this config...
+      3. Run '...'
+      4. See error...
+  validations:
+    required: false
+- type: textarea
+  attributes:
+    label: Environment
+    description: |
+      examples:
+        - **OS**: Ubuntu 20.04
+        - **Node**: 13.14.0
+        - **npm**: 7.6.3
+    value: |
+        - OS:
+        - Node:
+        - npm:
+    render: markdown
+  validations:
+    required: false
+- type: textarea
+  attributes:
+    label: Anything else?
+    description: |
+      Links? References? Anything that will give us more context about the issue you are encountering!
+
+      Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
+  validations:
+    required: false