Skip to content

Commit 986ac3f

Browse files
committed
Do not hold improvements/new features in CLR
* During the freeze period up to the last week before the release, improvements and new features in the CLR queue will not be held (behaviour A1). Note: Keeping the behaviour for - A3b (last week before release, all issues unrelated to the release will be held) - B1a (during on-sync period, only bugs will be integrated)
1 parent c687fa9 commit 986ac3f

File tree

1 file changed

+2
-2
lines changed
  • tracker_automations/continuous_manage_queues

1 file changed

+2
-2
lines changed

tracker_automations/continuous_manage_queues/lib.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ function run_A1() {
1919
# Note this could be done by one unique "runFromIssueList" action, but we are splitting
2020
# the search and the update in order to log all the closed issues within jenkins ($logfile)
2121

22-
# Basically get all the issues in the candidates queues (filter=14000 OR filter=23329), that are not bug
22+
# 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)
2424

2525
# Get the list of issues.
2626
${basereq} --action getIssueList \
27-
--jql "(filter=14000 OR filter=23329) \
27+
--jql "(filter=14000) \
2828
AND type IN ('New Feature', Improvement) \
2929
AND NOT filter = 22054" \
3030
--file "${resultfile}"

0 commit comments

Comments
 (0)