Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Waiting for testing' \
AND 'Currently in integration' IS NOT EMPTY \
AND Tester IN (cibot, nobody)" \
AND ( \
Tester = 'integration-team+cibot@moodle.com' OR \
Tester IS EMPTY \
)" \
--file "${resultfile}"

# Iterate over found issues and perform the actions with them
Expand All @@ -60,7 +63,10 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Waiting for security testing' \
AND 'Currently in integration' IS NOT EMPTY \
AND Tester IN (cibot, nobody)" \
AND ( \
Tester = 'integration-team+cibot@moodle.com' OR \
Tester IS EMPTY \
)" \
--file "${resultfile}"

# Iterate over found issues and perform the actions with them
Expand All @@ -80,7 +86,10 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Testing in progress' \
AND 'Currently in integration' IS NOT EMPTY \
AND Tester IN (cibot, nobody) \
AND ( \
Tester = 'integration-team+cibot@moodle.com' OR \
Tester IS EMPTY \
) \
AND NOT status changed AFTER -24h" \
--file "${resultfile}"

Expand All @@ -102,7 +111,10 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Security testing in progress' \
AND 'Currently in integration' IS NOT EMPTY \
AND Tester IN (cibot, nobody) \
AND ( \
Tester = 'integration-team+cibot@moodle.com' OR \
Tester IS EMPTY \
) \
AND NOT status changed AFTER -24h" \
--file "${resultfile}"

Expand Down
Loading