@@ -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+ 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+ 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+ 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+ 116+ Tester IS EMPTY \
117+ ) \
106118 AND NOT status changed AFTER -24h" \
107119 --file " ${resultfile} "
108120
0 commit comments