]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add form template for issue templates
authorChocobozzz <me@florianbigard.com>
Mon, 13 Jun 2022 12:33:26 +0000 (14:33 +0200)
committerChocobozzz <me@florianbigard.com>
Mon, 13 Jun 2022 13:05:42 +0000 (15:05 +0200)
.github/ISSUE_TEMPLATE/00-bug-issue.md [deleted file]
.github/ISSUE_TEMPLATE/00-bug-issue.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/10-installation-issue.md [deleted file]
.github/ISSUE_TEMPLATE/10-installation-issue.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/20-documentation-issue.md [deleted file]
.github/ISSUE_TEMPLATE/20-documentation-issue.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/30-feature-request.md [deleted file]
.github/ISSUE_TEMPLATE/30-feature-request.yml [new file with mode: 0644]

diff --git a/.github/ISSUE_TEMPLATE/00-bug-issue.md b/.github/ISSUE_TEMPLATE/00-bug-issue.md
deleted file mode 100644 (file)
index aafaa08..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
----
-name: 🐛 Bug Report
-about: Use this template for reporting a bug
----
-
-<!--
-Please read FAQ.md and docs.joinpeertube.org first.
-Please make sure your issue doesn't stem from a third-party plugin.
-Please search among past open/closed issues for a similar one beforehand:
-- https://github.com/Chocobozzz/PeerTube/issues?q=
-- https://framacolibri.org/c/peertube
-
-All done? Then please fill the following mandatory form to help us triage your issue.
--->
-
-**Describe the current behavior**
-
-**Steps to reproduce:**
-
-1.
-2.
-3.
-
-**Describe the expected behavior**
-
-**Additional information**
-
-* PeerTube instance:
-  * URL:
-  * version:
-  * NodeJS version:
-  * Ffmpeg version:
-
-* Browser name, version and platforms on which you could reproduce the bug:
-* Link to browser console log if relevant:
-* Link to server log if relevant (`journalctl` or `/var/www/peertube/storage/logs/`):
diff --git a/.github/ISSUE_TEMPLATE/00-bug-issue.yml b/.github/ISSUE_TEMPLATE/00-bug-issue.yml
new file mode 100644 (file)
index 0000000..6bcf1cb
--- /dev/null
@@ -0,0 +1,43 @@
+name: 🐛 Bug Report
+description: Use this template for reporting a bug
+body:
+  - type: checkboxes
+    attributes:
+      label: Is there an existing issue for this?
+      description: |
+        Please search among past open/closed issues for a similar one beforehand:
+          - https://github.com/Chocobozzz/PeerTube/issues?q=
+          - https://framacolibri.org/c/peertube
+      options:
+        - label: I have searched existing issues
+          required: true
+
+  - type: textarea
+    attributes:
+      label: Describe the current behavior
+
+  - type: textarea
+    attributes:
+      label: Steps to reproduce
+      value: |
+          1.
+          2.
+          3.
+
+  - type: textarea
+    attributes:
+      label: Describe the expected behavior
+
+  - type: textarea
+    attributes:
+      label: Additional information
+      value: |
+          * PeerTube instance:
+            * URL:
+            * Version:
+            * NodeJS version:
+            * Ffmpeg version:
+
+          * Browser name, version and platforms on which you could reproduce the bug:
+          * Link to browser console log if relevant:
+          * Link to server log if relevant (`journalctl` or `/var/www/peertube/storage/logs/`):
diff --git a/.github/ISSUE_TEMPLATE/10-installation-issue.md b/.github/ISSUE_TEMPLATE/10-installation-issue.md
deleted file mode 100644 (file)
index 4af9a11..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
----
-name: 🚀 Installation Issue
-about: Use this template for build/installation issues
----
-
-<!--
-Please read the FAQ.md and docs.joinpeertube.org first.
-Please make sure your issue doesn't stem from a third-party package.
-Please search among past open/closed issues for a similar one beforehand.
-
-All done? Then please fill the following mandatory form to help us triage your issue.
--->
-
-**Describe the problem**
-
-**Provide the exact sequence of commands / steps that you executed before running into the problem**
-
-**Additional information**
-
-* PeerTube instance:
-  * version:
-  * NodeJS version:
-  * Ffmpeg version:
-  * Redis version:
-  * PostgreSQL version:
-
-<!--
-Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached, not pasted.
-
-Don't forget to check `journalctl` or `/var/www/peertube/storage/logs/`
--->
diff --git a/.github/ISSUE_TEMPLATE/10-installation-issue.yml b/.github/ISSUE_TEMPLATE/10-installation-issue.yml
new file mode 100644 (file)
index 0000000..9bdf35d
--- /dev/null
@@ -0,0 +1,39 @@
+name: 🚀 Installation/Upgrade Issue
+description: Use this template for build/installation/upgrade issues
+body:
+  - type: checkboxes
+    attributes:
+      label: Have you read the documentation?
+      description: |
+        Please check the official documentation first
+          - Classic installation: https://docs.joinpeertube.org/install-any-os
+          - Docker installation: https://docs.joinpeertube.org/install-docker
+      options:
+        - label: I have read the documentation
+          required: true
+
+  - type: checkboxes
+    attributes:
+      label: Is there an existing issue for this?
+      description: |
+        Please search among past open/closed issues for a similar one beforehand:
+          - https://github.com/Chocobozzz/PeerTube/issues?q=
+          - https://framacolibri.org/c/peertube
+      options:
+        - label: I have searched existing issues
+          required: true
+
+  - type: textarea
+    attributes:
+      label: Describe the problem
+
+  - type: textarea
+    attributes:
+      label: Additional information
+      value: |
+          * PeerTube instance URL:
+          * PeerTube version:
+          * NodeJS version:
+          * Ffmpeg version:
+          * Redis version:
+          * PostgreSQL version:
diff --git a/.github/ISSUE_TEMPLATE/20-documentation-issue.md b/.github/ISSUE_TEMPLATE/20-documentation-issue.md
deleted file mode 100644 (file)
index 27bfc9c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
----
-name: 📝 Documentation Issue
-about: Use this template for documentation-related issues
-labels: 'Component: Documentation :books:'
-assignees: rigelk
----
-
-<!--
-Please read FAQ.md and docs.joinpeertube.org first.
-Please search among past open/closed issues for a similar one beforehand:
-- https://github.com/Chocobozzz/PeerTube/issues?q=
-- https://framacolibri.org/c/peertube
-
-All done? Then please fill the following mandatory form to help us triage your issue.
--->
-
-**Parts of the documentation concerned:**
-
-<!--
-Please provide a link to the documentation entry, for example: https://docs.joinpeertube.org/#/install-any-os
--->
-
-**Describe the desired information/correction**
-
-<!--
-Are you up to submit a pull request? Chances are, only a small edit is required, so give it a try:
-- click "Edit this page" if on docs.joinpeertube.org
-- edit https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/api/openapi.yaml if on https://docs.joinpeertube.org/api-rest-reference.html
--->
diff --git a/.github/ISSUE_TEMPLATE/20-documentation-issue.yml b/.github/ISSUE_TEMPLATE/20-documentation-issue.yml
new file mode 100644 (file)
index 0000000..213aeb4
--- /dev/null
@@ -0,0 +1,22 @@
+name: 📝 Documentation Issue
+description: Use this template for documentation-related issues
+labels: [ 'Component: Documentation :books:' ]
+body:
+  - type: checkboxes
+    attributes:
+      label: Is there an existing issue for this?
+      description: |
+        Please search among past open/closed issues for a similar one beforehand:
+          - https://github.com/Chocobozzz/PeerTube/issues?q=
+          - https://framacolibri.org/c/peertube
+      options:
+        - label: I have searched existing issues
+          required: true
+
+  - type: textarea
+    attributes:
+      label: Describe the desired information/correction
+      description: |
+        Are you up to submit a pull request? Chances are, only a small edit is required, so give it a try:
+          * Click "Edit this page" if on https://docs.joinpeertube.org
+          * Edit https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/api/openapi.yaml if on https://docs.joinpeertube.org/api-rest-reference.html
diff --git a/.github/ISSUE_TEMPLATE/30-feature-request.md b/.github/ISSUE_TEMPLATE/30-feature-request.md
deleted file mode 100644 (file)
index bb2cf20..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
----
-name: ✨ Feature Request
-about: Use this template to ask for new features and suggest new ideas 💡
----
-
-<!--
-Please read FAQ.md and docs.joinpeertube.org first.
-Please search among past open/closed issues for a similar one beforehand:
-- https://github.com/Chocobozzz/PeerTube/issues?q=
-
-All done? Then please fill the following mandatory form to help us triage your request.
--->
-
-**Describe the problem to be solved**
-
-<!--
-  Provide a clear and concise description of what the problem is.
-  Ex. I have an issue when [...]
--->
-
-**Describe the solution you would like:**
-
-<!--
-  Provide a clear and concise description of what you want to happen.
--->
-
-**Describe alternatives you have considered**  <!-- optional -->
-
-<!-- Remove if you have not considered alternatives.
-  Let us know about other solutions you have tried or researched.
--->
diff --git a/.github/ISSUE_TEMPLATE/30-feature-request.yml b/.github/ISSUE_TEMPLATE/30-feature-request.yml
new file mode 100644 (file)
index 0000000..e433734
--- /dev/null
@@ -0,0 +1,24 @@
+---
+name: ✨ Feature Request
+description: Use this template to ask for new features and suggest new ideas 💡
+body:
+  - type: checkboxes
+    attributes:
+      label: Is there an existing issue for this?
+      description: |
+        Please search among past open/closed issues for a similar one beforehand:
+          - https://github.com/Chocobozzz/PeerTube/issues?q=
+          - https://framacolibri.org/c/peertube
+      options:
+        - label: I have searched existing issues
+          required: true
+
+  - type: textarea
+    attributes:
+      label: Describe the problem to be solved
+      description: Provide a clear and concise description of what the problem is
+
+  - type: textarea
+    attributes:
+      label: Describe the solution you would like
+      description: Provide a clear and concise description of what you want to happen