-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsasol_tsa.tji
48 lines (43 loc) · 1.06 KB
/
sasol_tsa.tji
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
task sasol "SASOL Teacher Assessment" {
# We need to improve the reporting and we need to market to teachers
task tsa_reporting "TSA Reporting" {
task tsa_design_report "Design Provincial Report" {
allocate Neels
effort 2d
flags data
}
task tsa_prototype_report "Prototype Report" {
depends !tsa_design_report
effort 2w
allocate ${data_team}
flags data
}
task tsa_implement_report "Implement Report" {
depends !tsa_prototype_report
effort 2w
allocate dev_team
flags data
}
}
task tsa_marketing "TSA Marketing" {
task tsa_provincial_sms "SMS Campaigns" {
effort 2d
allocate Hannelie
flags communication
}
task tsa_flyers "TSA Flyer" {
effort 1w
allocate Neels
allocate Hannelie
flags communication
}
}
task tsa_follow_up "TSA Teacher -> Learner" {
depends !tsa_marketing
task tsa_teacher_learner "Teacher / Learner Practice Campaign" {
effort 2d
allocate Debs
flags communication
}
}
}