diff --git a/.github/ISSUE_TEMPLATE/bug-report-general.yml b/.github/ISSUE_TEMPLATE/bug-report-general.yml new file mode 100644 index 00000000..6ebc5582 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report-general.yml @@ -0,0 +1,50 @@ +name: General issues +description: Installation, packages, dependencies, "nothing works", test suite failures... +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: + - jbarlow83 +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What were you trying to do? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: dropdown + id: packaging-system + attributes: + label: Where are you installing from? + multiple: true + options: + - PyPI (pip, poetry, pipx, etc.) + - Linux package manager (apt, dnf, etc.) + - Homebrew + - Docker container + - Ubuntu snap + - Conda + - type: dropdown + id: operating-system + attributes: + label: What operating system are you working on? + multiple: true + options: + - Linux + - Windows + - macOS + - BSD + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + +