Skip to content

Commit dd3641a

Browse files
authored
Merge pull request #348 from andrewnicols/fixTester
Update username for cibot username
2 parents b971e46 + 90c65f1 commit dd3641a

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

tracker_automations/progress_automated_tested/progress_automated_tested.sh

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ ${basereq} --action getIssueList \
4040
--jql "project = 'Moodle' \
4141
AND status = 'Waiting for testing' \
4242
AND 'Currently in integration' IS NOT EMPTY \
43-
AND Tester IN (cibot, nobody)" \
43+
AND ( \
44+
Tester = '[email protected]' OR \
45+
Tester IS EMPTY \
46+
)" \
4447
--file "${resultfile}"
4548

4649
# Iterate over found issues and perform the actions with them
@@ -60,7 +63,10 @@ ${basereq} --action getIssueList \
6063
--jql "project = 'Moodle' \
6164
AND status = 'Waiting for security testing' \
6265
AND 'Currently in integration' IS NOT EMPTY \
63-
AND Tester IN (cibot, nobody)" \
66+
AND ( \
67+
Tester = '[email protected]' OR \
68+
Tester IS EMPTY \
69+
)" \
6470
--file "${resultfile}"
6571

6672
# Iterate over found issues and perform the actions with them
@@ -80,7 +86,10 @@ ${basereq} --action getIssueList \
8086
--jql "project = 'Moodle' \
8187
AND status = 'Testing in progress' \
8288
AND 'Currently in integration' IS NOT EMPTY \
83-
AND Tester IN (cibot, nobody) \
89+
AND ( \
90+
Tester = '[email protected]' OR \
91+
Tester IS EMPTY \
92+
) \
8493
AND NOT status changed AFTER -24h" \
8594
--file "${resultfile}"
8695

@@ -102,7 +111,10 @@ ${basereq} --action getIssueList \
102111
--jql "project = 'Moodle' \
103112
AND status = 'Security testing in progress' \
104113
AND 'Currently in integration' IS NOT EMPTY \
105-
AND Tester IN (cibot, nobody) \
114+
AND ( \
115+
Tester = '[email protected]' OR \
116+
Tester IS EMPTY \
117+
) \
106118
AND NOT status changed AFTER -24h" \
107119
--file "${resultfile}"
108120

0 commit comments

Comments
 (0)