1 Story Point = <half day
2 Story Points = 1/2 day
Showing posts with label JIRA. Show all posts
Showing posts with label JIRA. Show all posts
Wednesday, October 26, 2022
UserStory - Efforts Mandays Mapping
2 Story Points = 1-3 days
5 Story Points = 3-6 days
8 Story Points = 2 Weeks
13 Story Points = Needs to be broken Down
Tuesday, October 25, 2022
Jira Query Language - JQL Query Examples
"order by key asc"
- project = PRJ AND type = Epic AND labels in (APP123) AND summary ~ "AAC*"
- project = PRJ AND type = Bug AND reporter in (karan.kaw)
- project = PRJ AND assignee in (currentUser()) ORDER BY status
- project = PRJ AND reporter in (karan.kaw) ORDER BY status
- project = PRJ AND assignee in (currentUser()) AND status != Done ORDER BY key asc
- project = PRJ AND assignee in (currentUser()) AND status = "In Progress" ORDER BY status
For #1 - summary ~ "AAC*" means - summary of Jira having text as "AAC"
~ means Fuzzy Search
Subscribe to:
Posts (Atom)
Azure - Pipeline - Add Approver for Stage
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass
-
https://www.baeldung.com/spring-properties-file-outside-jar https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-featu...
-
The decision was made to block such external HTTP repositories by default https://stackoverflow.com/questions/66980047/maven-build-failure-d...
-
What is the difference between dependencyManagement and dependencies? https://stackoverflow.com/questions/11778276/what-is-the-difference...