From 9004009adcbe7da37ed72b8b3c5a7087e450688c Mon Sep 17 00:00:00 2001 From: jbarlow83 Date: Thu, 1 Jun 2023 16:52:08 -0700 Subject: [PATCH] Create bug-report-general.yml --- .github/ISSUE_TEMPLATE/bug-report-general.yml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report-general.yml 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 + +