From dedd89fde9bf5b6c2ef6927d62f0175dea62cb16 Mon Sep 17 00:00:00 2001 From: James Ellwood Date: Tue, 24 Oct 2023 10:15:47 -0400 Subject: [PATCH] Add issue templates for bugs and features. --- .github/ISSUE_TEMPLATE/bug-report.yml | 46 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.yml | 27 +++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..cc56bde --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,46 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: ["lumberbaron", "Luay-Sol", "hadielaham88"] +body: + - type: textarea + id: description + attributes: + label: Bug Description + description: What is the problem? + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What did you expect to happen? + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: How can the problem be reproduced? + validations: + required: true + - type: dropdown + id: flavour + attributes: + label: Kubernetes flavour + description: What Kubernetes favour were you using? + options: + - EKS + - AKS + - GKE + default: 0 + validations: + required: true + - type: input + id: version + attributes: + label: Kubernetes version + description: What Kubernetes version were you using? + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..30909ab --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,27 @@ +name: Feature Request +description: File a feature request +title: "[Feature]: " +labels: ["feature", "triage"] +assignees: ["lumberbaron", "Luay-Sol", "hadielaham88"] +body: + - type: textarea + id: description + attributes: + label: Feature Description + description: A description of the feature you are proposing. + validations: + required: true + - type: textarea + id: use-case + attributes: + label: Use Case + description: Why do you need this feature? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Proposed Solution + description: How would you solve this problem? + validations: + required: false \ No newline at end of file