-
-
Notifications
You must be signed in to change notification settings - Fork 467
chore: Add error monitoring solution question to bug report templates #5185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
cc7e75c
4e3adac
92cfdef
6f27782
091c3ec
a802f6b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,6 +55,22 @@ body: | |
| validations: | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| id: other_error_monitoring_solution | ||
| attributes: | ||
| description: Are you using any other error monitoring solution alongside Sentry? | ||
| label: Other Error Monitoring Solution | ||
| options: | ||
| - "No" | ||
| - "Bugsnag" | ||
| - "Datadog" | ||
| - "Firebase Crashlytics" | ||
| - "Instabug/Luciq" | ||
| - "NewRelic" | ||
| - "Other (please mention in issue description)" | ||
| validations: | ||
| required: true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Android template lacks separate name input fieldMedium Severity The Android template uses a dropdown with specific solution names and an "Other" catch-all, while the Java template uses a Yes/No dropdown paired with a separate |
||
|
|
||
| - type: input | ||
| id: version | ||
| attributes: | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent field ID naming across templates
Low Severity
The Android template uses
id: other_error_monitoring_solutionwhile the Java template usesid: other_error_monitoring. The PR reviewer explicitly requested renaming toother_error_monitoringfor consistency, which was applied to the Java template but not the Android template. This inconsistency makes it harder to correlate the same field across templates when processing or querying issue data.Additional Locations (1)
.github/ISSUE_TEMPLATE/bug_report_java.yml#L56-L57