From 669e29525d8ce66eb5963ed2c5131fbfe855b69c Mon Sep 17 00:00:00 2001 From: mors Date: Thu, 11 Jun 2026 10:34:56 +0900 Subject: [PATCH] Add feature report issue template in YAML format --- .github/ISSUE_TEMPLATE/FEATURE_REPORT.md | 22 --------------- .github/ISSUE_TEMPLATE/FEATURE_REPORT.yml | 34 +++++++++++++++++++++++ 2 files changed, 34 insertions(+), 22 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REPORT.yml diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md b/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md deleted file mode 100644 index b4509d9..0000000 --- a/.github/ISSUE_TEMPLATE/FEATURE_REPORT.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Feature Request -about: Suggest an improvement -title: '[FEATURE] ' -labels: enhancement ---- - -## Problem - -What problem are you trying to solve? - -## Proposed Solution - -Describe your idea. - -## Alternatives - -Alternative solutions considered. - -## Additional Context - -Anything else. diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REPORT.yml b/.github/ISSUE_TEMPLATE/FEATURE_REPORT.yml new file mode 100644 index 0000000..6ff9ce4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REPORT.yml @@ -0,0 +1,34 @@ +name: Feature Request +description: Suggest an improvement +title: "[FEATURE] " +labels: + - enhancement + +body: + - type: textarea + id: problem + attributes: + label: Problem + description: What problem are you trying to solve? + validations: + required: true + + - type: textarea + id: solution + attributes: + label: Proposed Solution + description: Describe your idea. + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives + description: Alternative solutions considered. + + - type: textarea + id: context + attributes: + label: Additional Context + description: Anything else.