From 6fedfa1a76066d2abf6016b1bf0f500ef2a483a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Luk=C3=A1=C5=A1?= Date: Thu, 5 Mar 2026 09:53:31 +0100 Subject: [PATCH] Create bug report issue template Added a bug report issue template to streamline bug reporting. --- .../workflows/ISSUE_TEMPLATE/bug_report.yml | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.yml b/.github/workflows/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..fbf6f4ed --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,64 @@ +name: 🐛 Bug Report +description: File a bug report to help us squash errors. +title: "[Bug]: " +labels: ["bug"] +assignees: [onrej-lukas] + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! Please provide as much detail as possible. + + - type: textarea + id: description + attributes: + label: Bug Description + description: A clear and concise description of what the bug is. + placeholder: Tell us what went wrong... + validations: + required: true + + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: Exactly what steps do we need to take to see this bug? + value: | + 1. Go to '...' + 2. Click on '...' + 3. See error + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What did you expect to happen instead? + validations: + required: true + + - type: input + id: version + attributes: + label: Version + description: What version of our software are you running? + placeholder: e.g., 0.1.1 + validations: + required: true + + - type: dropdown + id: installation_method + attributes: + label: Installation / Deployment Method + description: How are you running the application? + multiple: false + options: + - Installed from PyPI (pip) + - Running locally from source + - Pulled image from Docker Hub + - Local Docker build + validations: + required: true +