From a9c70b8400067b83ea7935549baeb5deed16a195 Mon Sep 17 00:00:00 2001 From: Richard Carson Derr Date: Sun, 9 Jun 2024 19:10:13 -0400 Subject: [PATCH] story(contrib): add story issue template (#9) contrib(issue-8): added story issue template --- .github/workflows/ISSUE_TEMPLATE/story.yaml | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ISSUE_TEMPLATE/story.yaml diff --git a/.github/workflows/ISSUE_TEMPLATE/story.yaml b/.github/workflows/ISSUE_TEMPLATE/story.yaml new file mode 100644 index 0000000..572a03d --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/story.yaml @@ -0,0 +1,28 @@ +name: Story +description: Represents stories +title: "story(subject): short description" +labels: ["story"] +body: + - type: textarea + id: description + attributes: + label: Description + description: Please provide an informal, general explanation of the work needed to be done, written from the perspective of the end user. + validations: + required: true + + - type: textarea + id: acceptance-criteria + attributes: + label: Acceptance Criteria + description: List the criteria for accepting this story as done + validations: + required: true + + - type: textarea + id: related-issues + attributes: + label: Related Issues + description: Please reference any other related issue, for example, if this story was created to address a bug report, reference the bug report issue here + validations: + required: false \ No newline at end of file