Commit fd1008f1 authored by Leo Mozoloa's avatar Leo Mozoloa Committed by AUTOMATIC1111
Browse files

Better Bug report form

parent 13ed73be
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
---
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.
+61 −0
Original line number Diff line number Diff line
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.

.vscode/settings.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
  "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"
  }
}