From 7c58a9c0546ed81f50664c7c440d4d29f6031de9 Mon Sep 17 00:00:00 2001 From: Quentin Mc Gaw Date: Thu, 19 Dec 2024 14:18:16 +0100 Subject: [PATCH] Make feature issue template easier to fill in --- .github/ISSUE_TEMPLATE/feature.md | 17 ----------------- .github/ISSUE_TEMPLATE/feature.yml | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature.md create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md deleted file mode 100644 index aacd885f9e5e..000000000000 --- a/.github/ISSUE_TEMPLATE/feature.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Request a feature -about: Report a missing feature - e.g. as a step before submitting a PR -title: '' -labels: 'type:feature' -assignees: '' ---- - -# Rationale - -Why should this feature exist? -What are the use-cases? - -# Implementation - -Do you have ideas regarding the implementation of this feature? -Are you willing to implement this feature? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 000000000000..663f1f859e68 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,15 @@ +name: Feature request +description: Suggest a feature to add to libevm +title: "Feature request: " +body: + - type: textarea + id: description + attributes: + label: "What's the feature 🧐" + placeholder: "Describe the feature you want and why it should be added" + validations: + required: true + - type: textarea + id: description + attributes: + label: "Would you have any idea on how to implement it?"