From 7bab29940c1974053eb72d17829f4e0c3bb4ff47 Mon Sep 17 00:00:00 2001 From: Ivan Kalashnikov Date: Thu, 22 Jan 2026 15:37:18 +0700 Subject: [PATCH] feat(issue-templates): add improved internal app error report template --- .github/ISSUE_TEMPLATE/in_app_bug_report.md | 7 --- .../ISSUE_TEMPLATE/internal_error_report.yml | 49 +++++++++++++++++++ 2 files changed, 49 insertions(+), 7 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/in_app_bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/internal_error_report.yml diff --git a/.github/ISSUE_TEMPLATE/in_app_bug_report.md b/.github/ISSUE_TEMPLATE/in_app_bug_report.md deleted file mode 100644 index 90d528a2a..000000000 --- a/.github/ISSUE_TEMPLATE/in_app_bug_report.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -name: ___ -labels: bug -about: internal app error report -title: '' -assignees: '' ---- diff --git a/.github/ISSUE_TEMPLATE/internal_error_report.yml b/.github/ISSUE_TEMPLATE/internal_error_report.yml new file mode 100644 index 000000000..0ae8891c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/internal_error_report.yml @@ -0,0 +1,49 @@ +name: 💥 Internal app error +description: Internal app error report +title: '💥 ' +type: bug + +body: + - type: input + id: environment-version + attributes: + label: Version Used + description: Version number and package type (e.g., exe, snap, deb, installer). + placeholder: "e.g. 'v7.12.0 snap' or 'v2.2.1 firefox'" + validations: + required: true + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to Reproduce + description: Provide a clear set of steps to reproduce this bug. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + + - type: dropdown + id: reliability + attributes: + label: Can you reproduce this reliably? + description: Was this a one-time occurrence, or can you make it happen every time by following the steps? + options: + - 'Yes, I can reproduce it reliably.' + - "Sometimes, it's intermittent." + - 'No, it only happened once.' + validations: + required: true + + - type: textarea + id: console-output + attributes: + label: Console Output + description: Is there any output if you press `Ctrl+Shift+i` (or `Cmd+Alt+i` on Mac) and check the 'Console' tab? If so, please paste it here. + placeholder: 'Paste any relevant console logs here...' + render: shell # Use 'shell' or 'log' for better formatting of code/logs + validations: + required: false