ZenHub
Zenhub has multiple pipelines to manage the tasks. The first pipeline is New Issue. Everything that needs to be done will enter the pipeline New Issue and after that, every task will move to the next pipeline until it is completed. In this article, I will walk you through how we can introduce the new issue in the New Issue pipeline and can create user stories in an effective way.
Create an issue template in GitHub
Go to GitHub.com and select the lab-agile-planning repository that you created following the previous tutorial.
Copy the following markdown for the story template content:
**As a** [role]
**I need** [function]
**So that** [benefit]
### Details and Assumptions
* [document what you know]
### Acceptance Criteria
```gherkin
Given [some context]
When [certain action is taken]
Then [the outcome of action is observed]Edit the template name to be: User Story, give it an appropriate description, and paste the contents of the above markdown into the Template contentYou should now have a new folder in your repository called
.github/ISSUE_TEMPLATES, which will contain your new user story template.









Comments
Post a Comment