From eb6e27968448d5147cd9b9568e680be06f6311e4 Mon Sep 17 00:00:00 2001 From: Cassidy James Date: Fri, 21 Aug 2026 10:32:56 -0600 Subject: [PATCH] Issue templates: update forms (#1047) * Issue templates: update bug template Remind to redact sensitive info from logs, and actually only accept image files for screenshots. * chore: Fix lint for issue template * Issue templates: restrict feature request screenshot filetypes Just like the bug template --- .github/ISSUE_TEMPLATE/bug.yml | 7 +++++-- .github/ISSUE_TEMPLATE/feature.yml | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 04457da..c2d5eb5 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -6,7 +6,7 @@ body: attributes: value: > Thanks for taking the time to report a bug in Coop! **Please provide as - much detail as you can** so we can properly confirm, triage, and + much detail as you can below** so we can properly confirm, triage, and ultimately fix your bug. - type: textarea @@ -49,7 +49,9 @@ body: attributes: label: Relevant logs/errors description: > - Please paste any relevant log output or error messages. + Please paste any relevant log output or error messages. **Redact sensitive + information** such as passwords, API keys, tokens, and personal data before + submitting. render: shell validations: required: false @@ -75,6 +77,7 @@ body: [acceptable use policies](https://docs.github.com/en/site-policy/acceptable-use-policies). validations: required: false + accept: '.png,.jpg,.jpeg,.gif,.svg,.webp' - type: checkboxes id: checklist diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index b740d22..1cb3727 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -61,6 +61,7 @@ body: [acceptable use policies](https://docs.github.com/en/site-policy/acceptable-use-policies). validations: required: false + accept: '.png,.jpg,.jpeg,.gif,.svg,.webp' - type: checkboxes id: checklist -- 2.51.2