From 2863bfcda0ba095f72c65a73efb35c3cbb2dbec3 Mon Sep 17 00:00:00 2001 From: Sander van Rijn Date: Wed, 25 Oct 2023 15:39:39 +0200 Subject: [PATCH] Add template for Epic issue (#98) --- .github/ISSUE_TEMPLATE/EPIC.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/EPIC.yml diff --git a/.github/ISSUE_TEMPLATE/EPIC.yml b/.github/ISSUE_TEMPLATE/EPIC.yml new file mode 100644 index 00000000..5cab546d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/EPIC.yml @@ -0,0 +1,25 @@ +name: "EPIC" +description: Create a new Epic issue to collect smaller issues that are part of a larger feature or goal. +title: "" +labels: ["Type: epic"] +body: + - type: textarea + id: description + attributes: + label: "Description" + description: Please enter an explicit description of the large feature or goal + placeholder: Short and explicit description of the epic issue... + validations: + required: true + - type: textarea + id: issues + attributes: + label: "Sub issues" + description: List all sub issues belonging to this + value: | + - [ ] + - [ ] + - [ ] + ... + validations: + required: false