From 12470e66d3e03f5d1f49dbefef94ab609b3ce5ff Mon Sep 17 00:00:00 2001 From: ManyChavez Date: Sat, 10 Jan 2026 15:05:34 +0100 Subject: [PATCH] Add feature request issue template Add a structured feature request form to standardize proposals. --- .github/ISSUE_TEMPLATE/feature_request.yml | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..da8f15cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,40 @@ +name: Feature request +description: Propose an improvement or new feature +title: "[Feature]: " +labels: ["enhancement"] +body: + - type: textarea + id: problem + attributes: + label: Problem + description: What problem are you trying to solve? + placeholder: Describe the pain point. + validations: + required: true + + - type: textarea + id: proposal + attributes: + label: Proposal + description: What would you like to see added/changed? + placeholder: Describe the solution. + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternatives + description: What alternatives have you considered? + placeholder: Other approaches or workarounds. + validations: + required: false + + - type: textarea + id: scope + attributes: + label: Scope + description: Any affected components or files (if known). + placeholder: e.g., docker-compose.yml, .env files, geth/reth configs + validations: + required: false