File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
tracker_automations/continuous_manage_queues Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,8 @@ function run_A2() {
6262 AND NOT filter = 21366
6363 AND (
6464 filter = 21363 OR
65- labels IN (mdlqa)
65+ labels IN (mdlqa) OR
66+ level IS NOT EMPTY
6667 )" \
6768 --file " ${resultfile} "
6869
@@ -183,9 +184,17 @@ function run_A3a() {
183184
184185# A3b, add the "integration_held" + standard comment to any issue arriving to candidates (IR & CLR).
185186function run_A3b() {
186- # Get the list of issues in the candidates queues (IR & CLR). All them will be held with last week comment.
187+ # Get the list of issues in the candidates queues (IR & CLR) and hold with the last week comment, if necessary.
188+ # All issues in CLR that don't belong to any criteria below will be held:
189+ # - Must-fix issues
190+ # - mdlqa issues
187191 ${basereq} --action getIssueList \
188- --jql " filter=14000 OR filter=23329" \
192+ --jql " filter=14000 OR (
193+ filter=23329 AND NOT (
194+ filter = 21363 OR
195+ labels IN (mdlqa)
196+ )
197+ )" \
189198 --file " ${resultfile} "
190199
191200 # Iterate over found issues, moving them to the current queue.
You can’t perform that action at this time.
0 commit comments