Skip to content

Commit 34a9d6b

Browse files
authored
Merge pull request #332 from mickhawkins/main
Avoid holding issues just bumped from CLR to integration
2 parents 6851043 + 5ff4ee1 commit 34a9d6b

File tree

1 file changed

+3
-1
lines changed
  • tracker_automations/continuous_manage_queues

1 file changed

+3
-1
lines changed

tracker_automations/continuous_manage_queues/lib.sh

+3-1
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)