From bb5c169505202cb90b9b508e8ec0254ccb5c7091 Mon Sep 17 00:00:00 2001 From: UtkarshUsername Date: Sat, 14 Mar 2026 16:58:53 +0530 Subject: [PATCH] Add attachments upload field to bug report template - Split "Logs, stack traces, or screenshots" into a logs-only textarea - Add optional upload field for screenshots, recordings, logs, and repro files --- .github/ISSUE_TEMPLATE/bug_report.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 73e39efc6..07438b251 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -96,10 +96,19 @@ body: - type: textarea id: logs attributes: - label: Logs, stack traces, or screenshots + label: Logs or stack traces description: Paste the most relevant output only. Redact secrets. render: shell + - type: upload + id: attachments + attributes: + label: Screenshots, recordings, or supporting files + description: Upload screenshots, short recordings, repro archives, or log files. Redact secrets before uploading. + validations: + required: false + accept: ".png,.jpg,.jpeg,.gif,.webp,.svg,.mp4,.mov,.webm,.log,.txt,.json,.zip" + - type: textarea id: workaround attributes: