File tree 1 file changed +3
-1
lines changed
tracker_automations/continuous_manage_queues
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,14 @@ function run_A1() {
21
21
22
22
# Basically get all the issues in the candidates queues (filter=14000), that are not bug
23
23
# 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
24
25
25
26
# Get the list of issues.
26
27
${basereq} --action getIssueList \
27
28
--jql " (filter=14000) \
28
29
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)" \
30
32
--file " ${resultfile} "
31
33
32
34
# Iterate over found issues and perform the actions with them.
You can’t perform that action at this time.
0 commit comments