ソースを参照

Merge pull request #32 from DARKDRAGON532/main

Added an issue form for feature requests
Dmitrii Selivanov 3 年 前
コミット
d2933234e1
2 ファイル変更32 行追加0 行削除
  1. 1 0
      .github/ISSUE_TEMPLATE/bug.yml
  2. 31 0
      .github/ISSUE_TEMPLATE/feature-request.yml

+ 1 - 0
.github/ISSUE_TEMPLATE/bug.yml

@@ -1,6 +1,7 @@
 name: Bug Report
 description: File a bug report!
 title: "(Bug): "
+labels: ["bug"]
 body:
 - type: input
   attributes:

+ 31 - 0
.github/ISSUE_TEMPLATE/feature-request.yml

@@ -0,0 +1,31 @@
+name: Feature Request
+description: Request or suggest a new feature!
+title: "(Feature Request): "
+labels: ["enhancement"]
+body:
+- type: dropdown
+  attributes:
+    label: Extension or Userscript?
+    options: 
+      - Extension
+      - Userscript
+      - Both
+  validations:
+    required: true
+- type: textarea
+  attributes:
+    label: Request or suggest a new feature!
+    placeholder: I want to suggest...
+  validations:
+    required: true
+- type: textarea
+  attributes:
+    label: Ways to implement this!
+    placeholder: We can implement it by...
+- type: checkboxes
+  attributes:
+    label: Can you work on this?
+    options:
+      - label: "Yes"
+      - label: "No"
+