From 6832024a1121e67b802c9b63eba96ccba924c8d5 Mon Sep 17 00:00:00 2001 From: Esteban Baron Date: Mon, 30 Oct 2023 10:39:51 +0100 Subject: [PATCH 1/2] feat: add defect issue template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Esteban BARON Co-authored-by: Arsène FOUGEROUSE --- .github/ISSUE_TEMPLATE/defect.yaml | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/defect.yaml diff --git a/.github/ISSUE_TEMPLATE/defect.yaml b/.github/ISSUE_TEMPLATE/defect.yaml new file mode 100644 index 0000000..2971730 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/defect.yaml @@ -0,0 +1,53 @@ +--- +name: Defect +description: Report a defect, such as a bug or regression. +labels: + - defect +body: + - type: textarea + id: observed + attributes: + label: Observed behavior + description: Describe the unexpected behavior or performance regression you are observing. + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + description: Describe the expected behavior or performance characteristics. + validations: + required: true + - type: textarea + id: environment + attributes: + label: Host environment + description: |- + Specify any relevant details about the host environment, + such as version/commit used, operating system, CPU architecture, container runtime, etc. + validations: + required: false + - type: textarea + id: configuration + attributes: + label: Guest configuration + description: |- + Specify any relevant details about the guest configuration, + such as kernel version, external dependencies version, initramfs details, lambdo config file, etc. + validations: + required: false + - type: textarea + id: steps + attributes: + label: Steps to reproduce + description: Provide as many concrete steps to reproduce the defect. + 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 defect. + validations: + required: false + From da6cbef05e4ba6bdd621b57012380f858885dc4f Mon Sep 17 00:00:00 2001 From: Esteban Baron Date: Mon, 30 Oct 2023 11:29:34 +0100 Subject: [PATCH 2/2] 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