File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
tracker_automations/continuous_manage_queues Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,14 @@ function run_A1() {
2121
2222 # Basically get all the issues in the candidates queues (filter=14000), that are not bug
2323 # and that haven't received any comment with the standard unholding text (NOT filter = 22054)
24+ # excluding issues recently bumped from CLR back to integration
2425
2526 # Get the list of issues.
2627 ${basereq} --action getIssueList \
2728 --jql " (filter=14000) \
2829 AND type IN ('New Feature', Improvement) \
29- AND NOT filter = 22054" \
30+ AND NOT filter = 22054 \
31+ AND NOT (status changed FROM 'Waiting for component lead review' TO 'Waiting for integration review' AFTER -2h)" \
3032 --file " ${resultfile} "
3133
3234 # Iterate over found issues and perform the actions with them.
You can’t perform that action at this time.
0 commit comments