From 40f3176bacaeb386f74f91d408386236a2e05303 Mon Sep 17 00:00:00 2001 From: Scott Chow Date: Thu, 19 Nov 2020 14:48:41 -0800 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/user-story.md | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/user-story.md diff --git a/.github/ISSUE_TEMPLATE/user-story.md b/.github/ISSUE_TEMPLATE/user-story.md new file mode 100644 index 000000000..0c1fc91d4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/user-story.md @@ -0,0 +1,39 @@ +--- +name: User Story +about: This is the format for defining user story issues. +title: '' +labels: '' +assignees: '' + +--- + +# User Story + +As a ____ I can ____ so that ____ + +# Acceptance Criteria + +- [ ] First thing that should be true when story is done. +- [ ] Second thing that should be true when story is done. +... + +# Implementation Todos + +Front end: + +- [ ] First thing that must be done in the front end code. +- [ ] Second thing that must be done in the front end code. +... + +Back end: + +- [ ] First thing that must be done in the back end code. +- [ ] Second thing that must be done in the back end code. +... + + +Testing: + +- [ ] Front end tests pass and there is adequate coverage +- [ ] Back end tests pass and there is adequate coverage +...