@sppg2001/atomize 1.0.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +17 -3
- package/README.md +264 -166
- package/dist/cli/index.js +103470 -113334
- package/dist/cli/keytar-4z5sa3wk.node +0 -0
- package/examples/README.md +215 -0
- package/examples/advanced-filtering.yaml +113 -0
- package/examples/conditional-percentage-template.yaml +139 -0
- package/examples/fullstack.yaml +1 -6
- package/package.json +11 -8
- package/templates/presets/custom.yaml +38 -27
|
@@ -1,24 +1,20 @@
|
|
|
1
1
|
version: "1.0"
|
|
2
2
|
name: " Custom Example"
|
|
3
|
-
description: "Example template for an Agile project"
|
|
3
|
+
description: "Example template for an Agile project. Handles dev stories, mixed dev+test stories, and test-only stories in a single template using conditional tasks and conditional estimation."
|
|
4
4
|
author: "Atomize"
|
|
5
5
|
tags: []
|
|
6
6
|
|
|
7
7
|
filter:
|
|
8
8
|
workItemTypes: ["User Story"]
|
|
9
9
|
states: ["Ready for Sprint"]
|
|
10
|
-
tags:
|
|
11
|
-
exclude:
|
|
12
|
-
- "Test Only"
|
|
10
|
+
tags:
|
|
11
|
+
exclude:
|
|
13
12
|
- "TestGen"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
excludeIfHasTasks: false
|
|
13
|
+
excludeIfHasTasks: true
|
|
17
14
|
areaPaths:
|
|
18
15
|
- EA-RSP-Platform\Release 2 Team
|
|
19
16
|
iterations:
|
|
20
|
-
-
|
|
21
|
-
|
|
17
|
+
- "@CurrentIteration"
|
|
22
18
|
|
|
23
19
|
tasks:
|
|
24
20
|
- title: "Analysis & Playback"
|
|
@@ -26,70 +22,77 @@ tasks:
|
|
|
26
22
|
activity: "Development"
|
|
27
23
|
tags: []
|
|
28
24
|
assignTo: "@ParentAssignee"
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
31
26
|
|
|
32
27
|
- title: "Build"
|
|
33
28
|
estimationPercent: 50
|
|
34
29
|
activity: "Development"
|
|
35
30
|
tags: []
|
|
36
31
|
assignTo: "@ParentAssignee"
|
|
37
|
-
|
|
32
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
38
33
|
|
|
39
34
|
- title: "Developer Test"
|
|
40
35
|
estimationPercent: 25
|
|
41
36
|
activity: "Development"
|
|
42
37
|
tags: []
|
|
43
38
|
assignTo: "@ParentAssignee"
|
|
44
|
-
|
|
39
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
45
40
|
|
|
46
41
|
- title: "QA Smoke Test"
|
|
47
42
|
estimationPercent: 0
|
|
48
43
|
activity: "Development"
|
|
49
44
|
tags: []
|
|
50
45
|
assignTo: "@ParentAssignee"
|
|
51
|
-
|
|
46
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
52
47
|
|
|
53
48
|
- title: "Wiki"
|
|
54
49
|
estimationPercent: 5
|
|
55
50
|
activity: "Development"
|
|
56
51
|
tags: []
|
|
57
52
|
assignTo: "@ParentAssignee"
|
|
58
|
-
|
|
53
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
59
54
|
|
|
60
55
|
- title: "Code Review "
|
|
61
56
|
estimationPercent: 0
|
|
62
57
|
activity: "Development"
|
|
63
58
|
tags: []
|
|
64
59
|
assignTo: "@Unassigned"
|
|
65
|
-
|
|
60
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
61
|
+
|
|
62
|
+
- title: "Physical Data Model Updated"
|
|
63
|
+
estimationPercent: 0
|
|
64
|
+
activity: "Development"
|
|
65
|
+
tags: []
|
|
66
|
+
assignTo: "@ParentAssignee"
|
|
67
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
68
|
+
|
|
66
69
|
- title: "Test Preparation"
|
|
67
70
|
estimationPercent: 40
|
|
71
|
+
estimationPercentCondition:
|
|
72
|
+
- condition: '${story.tags} CONTAINS "Testing Only" OR ${story.tags} CONTAINS "Test Only"'
|
|
73
|
+
percent: 59.70
|
|
68
74
|
activity: "Testing"
|
|
69
75
|
tags: []
|
|
70
76
|
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
71
77
|
assignTo: "@Unassigned"
|
|
72
78
|
|
|
73
|
-
|
|
74
|
-
|
|
75
79
|
- title: "Test Execution"
|
|
76
80
|
estimationPercent: 27
|
|
81
|
+
estimationPercentCondition:
|
|
82
|
+
- condition: '${story.tags} CONTAINS "Testing Only" OR ${story.tags} CONTAINS "Test Only"'
|
|
83
|
+
percent: 40.30
|
|
77
84
|
activity: "Testing"
|
|
78
85
|
tags: []
|
|
79
86
|
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
80
87
|
assignTo: "@Unassigned"
|
|
81
88
|
|
|
82
|
-
|
|
83
|
-
|
|
84
89
|
- title: "Automation Testing"
|
|
85
90
|
estimationPercent: 0
|
|
86
|
-
activity: "
|
|
91
|
+
activity: "Test Automation"
|
|
87
92
|
tags: []
|
|
88
93
|
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
89
94
|
assignTo: "@Unassigned"
|
|
90
95
|
|
|
91
|
-
|
|
92
|
-
|
|
93
96
|
- title: "Test Review"
|
|
94
97
|
estimationPercent: 0
|
|
95
98
|
activity: "Testing"
|
|
@@ -97,8 +100,6 @@ tasks:
|
|
|
97
100
|
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
98
101
|
assignTo: "@Unassigned"
|
|
99
102
|
|
|
100
|
-
|
|
101
|
-
|
|
102
103
|
- title: "Release Notes"
|
|
103
104
|
estimationPercent: 0
|
|
104
105
|
activity: "Testing"
|
|
@@ -106,7 +107,12 @@ tasks:
|
|
|
106
107
|
condition: '${story.tags} NOT CONTAINS "Dev Only"'
|
|
107
108
|
assignTo: "@Unassigned"
|
|
108
109
|
|
|
109
|
-
|
|
110
|
+
- title: "Merge to Stable"
|
|
111
|
+
estimationPercent: 10
|
|
112
|
+
activity: "Development"
|
|
113
|
+
tags: []
|
|
114
|
+
assignTo: "@ParentAssignee"
|
|
115
|
+
condition: '${story.tags} NOT CONTAINS "Testing Only" AND ${story.tags} NOT CONTAINS "Test Only"'
|
|
110
116
|
|
|
111
117
|
estimation:
|
|
112
118
|
strategy: "percentage"
|
|
@@ -116,4 +122,9 @@ estimation:
|
|
|
116
122
|
metadata:
|
|
117
123
|
category: "Agile Project"
|
|
118
124
|
recommendedFor: []
|
|
119
|
-
estimationGuidelines:
|
|
125
|
+
estimationGuidelines: |
|
|
126
|
+
Handles three story archetypes in one template:
|
|
127
|
+
- Dev and Test story (no special tag): dev tasks + test tasks, base percentages apply.
|
|
128
|
+
- Testing Only / Test Only story: dev tasks skipped; Test Preparation gets 59.70%
|
|
129
|
+
and Test Execution gets 40.30%.
|
|
130
|
+
- Dev Only story: test tasks skipped
|