summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNoDRM <[email protected]>2021-11-15 14:39:48 +0100
committerNoDRM <[email protected]>2021-11-15 14:39:48 +0100
commitbe57bcca7da79c455aea2eed562d4e96ba6a09fe (patch)
treec8bf39b0826662a492922b9006458d81caeafe7c /.github
parent4a58f7017ce343184134d4469dd4d00166122552 (diff)
Enable issue forms
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/QUESTION.md33
-rw-r--r--.github/ISSUE_TEMPLATE/QUESTION.yml41
2 files changed, 41 insertions, 33 deletions
diff --git a/.github/ISSUE_TEMPLATE/QUESTION.md b/.github/ISSUE_TEMPLATE/QUESTION.md
deleted file mode 100644
index cf79687..0000000
--- a/.github/ISSUE_TEMPLATE/QUESTION.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-name: Question
-about: Questions for DeDRM Project
-title: "[QUESTION] Title"
-labels: Question
----
-
-## CheckList
-<!-- Check with `[x]` -->
-- [ ] `The Title` and The `Log Title` are setted correctly.
-- [ ] Clarified about `my environment`.
-- [ ] Code block is used for `the log`.
-<!-- If you don't know the version, please specify 'Unknown'. -->
-<!-- In case of markdown To use the code block, enclose it in ```. -->
-<!-- If you don't need Log, please delete the log section. -->
-
----
-
-## Title
-<!-- content -->
-
-## My Environment
-### Calibre: `Version`
-### Kindle: `Version`
-### DeDRM: `Version`
-
-## Log
-<details><summary>Log Title</summary>
-
-```log
-PUT YOUR LOG
-```
-</details>
diff --git a/.github/ISSUE_TEMPLATE/QUESTION.yml b/.github/ISSUE_TEMPLATE/QUESTION.yml
new file mode 100644
index 0000000..c6c6302
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/QUESTION.yml
@@ -0,0 +1,41 @@
+name: Question
+description: Questions for DeDRM Project
+body:
+ - type: textarea
+ id: question
+ attributes:
+ label: Question / bug report
+ description: Please enter your question / your bug report.
+ - type: input
+ id: calibre-version
+ attributes:
+ label: Which version of Calibre are you running?
+ description: "Example: 5.30"
+ placeholder: "5.30"
+ validations:
+ required: true
+ - type: input
+ id: plugin-version
+ attributes:
+ label: Which version of the DeDRM plugin are you running?
+ description: "Example: v7.2.1"
+ placeholder: "v7.2.1"
+ validations:
+ required: true
+ - type: input
+ id: kindle-version
+ attributes:
+ label: If applicable, which version of the Kindle software are you running?
+ description: "Example: 1.24"
+ placeholder: "Leave empty if unrelated to Kindle books"
+ validations:
+ required: false
+ - type: textarea
+ id: log
+ attributes:
+ label: Log output
+ description: If applicable, please post your log output here - into the code block.
+ value: |
+ ```log
+ Paste log output here.
+ ``` \ No newline at end of file