aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Mozoloa <leo.drrty@gmail.com>2022-10-16 10:41:03 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-19 18:30:02 +0000
commitfd1008f1e0f067a99793c7885e1f5010811f1ac0 (patch)
tree9c84877c93624a905838e160e4cc84a771652107
parent13ed73bedaa3df0f3edff41bd89bf0702f1c57b5 (diff)
downloadstable-diffusion-webui-gfx803-fd1008f1e0f067a99793c7885e1f5010811f1ac0.tar.gz
stable-diffusion-webui-gfx803-fd1008f1e0f067a99793c7885e1f5010811f1ac0.tar.bz2
stable-diffusion-webui-gfx803-fd1008f1e0f067a99793c7885e1f5010811f1ac0.zip
Better Bug report form
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md32
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml61
-rw-r--r--.vscode/settings.json5
3 files changed, 66 insertions, 32 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index 50c54210..00000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: bug-report
-assignees: ''
-
----
-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on '....'
-3. Scroll down to '....'
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Desktop (please complete the following information):**
- - OS: [e.g. Windows, Linux]
- - Browser [e.g. chrome, safari]
- - Commit revision [looks like this: e68484500f76a33ba477d5a99340ab30451e557b; can be seen when launching webui.bat, or obtained manually by running `git rev-parse HEAD`]
-
-**Additional context**
-Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 00000000..9b7e224e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,61 @@
+name: Bug Report
+description: File a bug report
+title: "[Bug]: "
+labels: ["bug-report"]
+
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report!
+ - type: textarea
+ id: what-did
+ attributes:
+ label: What did happened?
+ description: Also tell us, what did you expect to happen?
+ validations:
+ required: true
+ - type: textarea
+ id: what-should
+ attributes:
+ label: What should have happened?
+ description: tell what you think the normal behavior should be
+ validations:
+ required: true
+ - type: textarea
+ id: commit
+ attributes:
+ label: commit
+ description: Which commit are you running ? (copy the **Commit hash** shown in the cmd/terminal when you launch the UI)
+ - type: dropdown
+ id: browsers
+ attributes:
+ label: What browsers do you use to run the UI ?
+ multiple: true
+ options:
+ - Mozilla Firefox
+ - Google Chrome
+ - Brave
+ - Apple Safari
+ - Microsoft Edge
+ - type: dropdown
+ id: os
+ attributes:
+ label: Where are you running the webui?
+ multiple: true
+ options:
+ - Colab/Cloud
+ - Windows
+ - Linux
+ - MacOS
+ - type: textarea
+ id: cmdargs
+ attributes:
+ label: Command Line Arguments
+ description: Are you using any launching parameters/command line arguments (modified webui-user.py) ? If yes, please write them below
+ render: Shell
+ - type: textarea
+ id: misc
+ attributes:
+ label: Additionnal information, context and logs
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..d6e94aad
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+ "yaml.schemas": {
+ "https://json.schemastore.org/github-issue-forms.json": "file:///c%3A/AI/Repos/stable-diffusion-webui-moz/.github/ISSUE_TEMPLATE/bug_report.md"
+ }
+}