From da6cbef05e4ba6bdd621b57012380f858885dc4f Mon Sep 17 00:00:00 2001 From: Esteban Baron Date: Mon, 30 Oct 2023 11:29:34 +0100 Subject: [PATCH] feat: add proposal issue template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Arsène FOUGEROUSE Signed-off-by: Esteban Baron --- .github/ISSUE_TEMPLATE/proposal.yaml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/proposal.yaml diff --git a/.github/ISSUE_TEMPLATE/proposal.yaml b/.github/ISSUE_TEMPLATE/proposal.yaml new file mode 100644 index 0000000..94779b8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/proposal.yaml @@ -0,0 +1,39 @@ +--- +name: Proposal +description: Propose an enhancement or new feature. +labels: + - proposal +body: + - type: textarea + id: change + attributes: + label: Proposed change + description: |- + This could be a behavior change, enhanced API, or a new feature. + Be explicit about the changes intended and how they will address the problem. + You can include code snippets, architectural diagrams, or any other relevant information. + validations: + required: true + - type: textarea + id: usecase + attributes: + label: Use case + description: What is the use case or general motivation for this proposal? + validations: + required: true + - type: textarea + id: contribute + attributes: + label: Contribution + description: |- + Are you intending or interested in contributing code for this proposal if accepted? + If so, please indicate what you are interested in contributing. + validations: + required: false + - type: textarea + id: details + attributes: + label: Other details + description: Provide as many details or other information that may be relevant to the proposal. + validations: + required: false