From b06a6be9141654c515a33d660b0ccbba2d41f77d Mon Sep 17 00:00:00 2001 From: Cameron Radmore Date: Sat, 12 Sep 2026 14:55:13 -0400 Subject: [PATCH] chore: switch to fillable checkboxes for issue templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 18 ++++++++++++------ .github/ISSUE_TEMPLATE/feature_request.yml | 18 ++++++++++++------ 2 files changed, 24 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8c6896d7b20..8581fc779de 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -7,12 +7,18 @@ body: attributes: value: | Thanks for taking the time to report a bug! Please fill out the information below to help us investigate. - - **Before submitting**, please check: - - [ ] I've searched [existing issues](https://github.com/thomhurst/TUnit/issues) to ensure this isn't a duplicate - - [ ] I've read the [documentation](https://tunit.dev/) and this isn't expected behavior - - [ ] I'm using the latest version of TUnit - + - type: checkboxes + id: bug-checklist + attributes: + label: Bug report checklist + description: Before submitting, please check + options: + - label: I've searched [existing issues](https://github.com/thomhurst/TUnit/issues) to ensure this isn't a duplicate + required: true + - label: I've read the [documentation](https://tunit.dev/) and this isn't expected behavior + required: true + - label: I'm using the latest version of TUnit + required: true - type: textarea id: description attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 3d07c58d7f2..fdecfd11f51 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -7,12 +7,18 @@ body: attributes: value: | Thanks for suggesting a feature! We appreciate your input in making TUnit better. - - **Before submitting**, please: - - [ ] Search [existing issues](https://github.com/thomhurst/TUnit/issues) and [discussions](https://github.com/thomhurst/TUnit/discussions) to ensure this hasn't been suggested before - - [ ] Check the [documentation](https://tunit.dev/) to confirm this feature doesn't already exist - - [ ] Consider starting a [discussion](https://github.com/thomhurst/TUnit/discussions/new?category=ideas) first for larger features to get community feedback - + - type: checkboxes + id: feature-checklist + attributes: + label: Feature request checklist + description: Before submitting, please check + options: + - label: Search [existing issues](https://github.com/thomhurst/TUnit/issues) and [discussions](https://github.com/thomhurst/TUnit/discussions) to ensure this hasn't been suggested before + required: true + - label: Check the [documentation](https://tunit.dev/) to confirm this feature doesn't already exist + required: true + - label: Consider starting a [discussion](https://github.com/thomhurst/TUnit/discussions/new?category=ideas) first for larger features to get community feedback + required: true - type: textarea id: problem attributes: