From d4e4d07f4598399db8ef68f6db9b4b79710e5def Mon Sep 17 00:00:00 2001 From: Markus Hintersteiner Date: Wed, 11 Mar 2026 10:25:14 +0100 Subject: [PATCH 1/3] chore: Add error monitoring solution question to bug report template --- .github/ISSUE_TEMPLATE/bug_report.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 945a72b5b..fb28fa23a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -20,6 +20,25 @@ body: validations: required: true + - type: dropdown + id: other_error_monitoring + attributes: + description: Are you using any other error monitoring solution alongside Sentry? + label: Other Error Monitoring Solution + options: + - "Yes" + - "No" + validations: + required: true + + - type: input + id: other_error_monitoring_name + attributes: + label: Other Error Monitoring Solution Name + description: If you're using another error monitoring solution side-by-side, please enter the name of the other solution. + validations: + required: false + - type: textarea id: steps-to-reproduce attributes: From d48b14c92a7427145558682917a89ff12b9f304c Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Tue, 17 Mar 2026 11:39:44 +0100 Subject: [PATCH 2/3] less textfields --- .github/ISSUE_TEMPLATE/bug_report.yml | 74 +++++++++++++-------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index fb28fa23a..813c91344 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,21 +2,40 @@ name: 🐞 Bug Report description: Report a bug in this repo labels: ["Unity", "Bug"] body: - - type: textarea - id: environment + - type: input + id: sdk-version attributes: - label: Environment - description: | - How do you use Sentry? - Sentry SaaS (sentry.io) or self-hosted/on-premise (which version?) - - Which version of the SDK? + label: SDK Version + placeholder: e.g. 4.0.0 + validations: + required: true - How did you install the package? (Git-URL, Assetstore) + - type: input + id: unity-version + attributes: + label: Unity Version + placeholder: e.g. 2022.3.70f1 + validations: + required: true - Which version of Unity? + - type: checkboxes + id: platform + attributes: + label: Platform + options: + - label: Editor + - label: Mobile (Android, iOS) + - label: Desktop (Windows, macOS, Linux) + - label: WebGL + - label: Console - Is this happening in Unity (editor) or on a player like Android, iOS, Windows? + - type: dropdown + id: sentry-environment + attributes: + label: Sentry Environment + options: + - Sentry SaaS (sentry.io) + - Self-hosted validations: required: true @@ -31,19 +50,11 @@ body: validations: required: true - - type: input - id: other_error_monitoring_name - attributes: - label: Other Error Monitoring Solution Name - description: If you're using another error monitoring solution side-by-side, please enter the name of the other solution. - validations: - required: false - - type: textarea id: steps-to-reproduce attributes: label: Steps to Reproduce - description: | + placeholder: | 1. What 2. you 3. did. @@ -51,24 +62,13 @@ body: required: true - type: textarea - id: expected-result + id: expected-actual attributes: - label: Expected Result - description: What you thought would happen. - validations: - required: true + label: Expected vs Actual Result + placeholder: | + Expected: ... + Actual: ... - - type: textarea - id: actual-result - attributes: - label: Actual Result - description: What actually happened. Maybe a screenshot/recording? Maybe some logs? + Include any logs, screenshots, or recordings if available. validations: required: true - - - type: textarea - id: logs-screenshots - attributes: - label: Any logs or screenshots - validations: - required: false \ No newline at end of file From a83708ca2452065c42877871f6a4e5e9dadf33c3 Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Tue, 17 Mar 2026 11:46:47 +0100 Subject: [PATCH 3/3] . --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 813c91344..92ab55bd5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -40,7 +40,7 @@ body: required: true - type: dropdown - id: other_error_monitoring + id: other-error-monitoring attributes: description: Are you using any other error monitoring solution alongside Sentry? label: Other Error Monitoring Solution