From 4cb30647a97cd346db0b20512d34c514195bbb38 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Fri, 10 Jul 2026 12:06:12 +0200 Subject: [PATCH] hotfix(bugreport): adding optional input field; which init system? --- .gitea/ISSUE_TEMPLATE/bug.yaml | 178 +++++++++++++++++---------------- 1 file changed, 93 insertions(+), 85 deletions(-) diff --git a/.gitea/ISSUE_TEMPLATE/bug.yaml b/.gitea/ISSUE_TEMPLATE/bug.yaml index 4a6416b..ac0449e 100644 --- a/.gitea/ISSUE_TEMPLATE/bug.yaml +++ b/.gitea/ISSUE_TEMPLATE/bug.yaml @@ -2,99 +2,107 @@ name: Bug Report about: Something broke title: "bug: " labels: - - bug + - bug body: - - type: textarea - id: description - attributes: - label: What happened - placeholder: Describe the bug - validations: - required: true + - type: textarea + id: description + attributes: + label: What happened + placeholder: Describe the bug + validations: + required: true - - type: textarea - id: expected - attributes: - label: What should happen - placeholder: Expected behavior - validations: - required: true + - type: textarea + id: expected + attributes: + label: What should happen + placeholder: Expected behavior + validations: + required: true - - type: textarea - id: steps - attributes: - label: Steps to reproduce - placeholder: | - 1. - 2. - 3. - render: shell - validations: - required: true + - type: textarea + id: steps + attributes: + label: Steps to reproduce + placeholder: | + 1. + 2. + 3. + render: shell + validations: + required: true - - type: dropdown - id: os - attributes: - label: OS - options: - - NixOS - - Arch - - Debian / Ubuntu - - Fedora - - Alpine - - Artix - - Gentoo - - Other - validations: - required: false + - type: dropdown + id: os + attributes: + label: OS + options: + - NixOS + - Arch + - Debian / Ubuntu + - Fedora + - Alpine + - Artix + - Gentoo + - Other + validations: + required: false - - type: input - id: other-os - attributes: - label: Other OS (if "Other" above) - placeholder: e.g. Void, Gentoo, FreeBSD - validations: - required: false + - type: input + id: other-os + attributes: + label: Other OS (if "Other" above) + placeholder: e.g. Void, Gentoo, FreeBSD + validations: + required: false - - type: dropdown - id: init - attributes: - label: Init system - description: Relevant for UWSM configuration - options: - - systemd - - non-systemd (openrc / runit / s6 / ...) - validations: - required: false + - type: dropdown + id: init + attributes: + label: Init system + description: Relevant for UWSM configuration + options: + - systemd + - non-systemd (openrc / runit / s6 / ...) + validations: + required: false - - type: input - id: qt-version - attributes: - label: Qt version - placeholder: 6.7 - validations: - required: false + - type: input + id: other-init + attributes: + label: Other init system (if "non-systemd" above) + placeholder: e.g. openrc, runit, s6, dinit + validations: + required: false - - type: input - id: commit - attributes: - label: Branch / commit - placeholder: main / abc1234 - validations: - required: false + - type: input + id: qt-version + attributes: + label: Qt version + placeholder: 6.11.1 + validations: + required: false - - type: textarea - id: logs - attributes: - label: Logs / backtrace / screenshots - render: shell - validations: - required: false + - type: input + id: commit + attributes: + label: Branch / commit + placeholder: main / abc1234 + validations: + required: false - - type: textarea - id: workaround - attributes: - label: Found a workaround? - validations: - required: false + - type: textarea + id: logs + attributes: + label: Logs / backtrace / screenshots + render: shell + validations: + required: false + + - type: textarea + id: workaround + attributes: + label: Found a workaround? + validations: + required: false