From 50e0e083634bd1bdcebee9f50e238ea49730dc38 Mon Sep 17 00:00:00 2001 From: Charly Molter Date: Fri, 6 Dec 2024 14:08:54 +0100 Subject: [PATCH] docs(ISSUE_TEMPLATE): add epic template (#916) Taken from https://github.com/Kong/kubernetes-ingress-controller/pull/6779 Signed-off-by: Charly Molter Co-authored-by: Jintao Zhang --- .github/ISSUE_TEMPLATE/epic.yaml | 46 ++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/epic.yaml diff --git a/.github/ISSUE_TEMPLATE/epic.yaml b/.github/ISSUE_TEMPLATE/epic.yaml new file mode 100644 index 00000000..12d5edf8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/epic.yaml @@ -0,0 +1,46 @@ +name: ☔ Epic +description: Use this template to propose a new feature or enhancement that requires multiple changes across the project. +labels: [ epic ] +title: ☔ +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Problem Statement + description: Without specifying a solution, describe what the project is missing today. + placeholder: | + The rotating project logo has a fixed size and color. + There is no way to make it larger and more shiny. + validations: + required: true + - type: textarea + attributes: + label: Supporting documentation + description: | + Link to supporting documentation, such as design documents, user stories, or other relevant information. + placeholder: | + User stories: + - As a user, I want to control the size of the rotating logo using a CLI flag. + - As a user, I want to control the color of the rotating logo using a CLI flag. + [Design document](https://example.com/design) + validations: + required: false + - type: textarea + attributes: + label: Acceptance Criteria + value: | + ### Implementation + - [ ] Design + - [ ] Code + + ### Docs + - [ ] Guide and required documentation + - [ ] User-acceptance testing (someone not involved in the project tries the guide and the feature) + validations: + required: true