diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index be9cf40a..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,21 +0,0 @@ -## Describe the bug -A clear and concise description of what the bug is. - -## To Reproduce -1. I did a thing -2. I did another thing -3. Then the thing happened - -## Expected behavior -A description of what you expected to happen. - -## Screenshots/Video -If applicable, add screenshots/video to help explain your problem. -Remember to mark the area in the application thats impacted. - -## App Info - - OS: [e.g. iOS] - - Version [e.g. 2024.8.0] - -## 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..57367a12 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,43 @@ +name: Bug Report +description: File a bug report. +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: + - gschier +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of our software are you running? + placeholder: 2024.8.0 + validations: + required: true + - type: dropdown + id: os + attributes: + label: What operating system are you on? + multiple: false + options: + - macOS + - Windows + - Linux + - 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