Skip to content

Commit 3a1af67

Browse files
authored
Merge pull request #329 from junpataleta/clr_handling_during_freeze
Handling of issues for the CLR queue during the code freeze period.
2 parents f92c381 + b32080e commit 3a1af67

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

tracker_automations/component_leads_integration_mover/component_leads_integration_mover.sh

+19-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
#clearcache: set it to "true" to force the removal of the (48h) cached groups, components and reviewers data.
1010
#quiet: with any value different from "false", don't perform any action in the Tracker.
1111
#restrictedto: if set, restrict any comment to that role in the project. Blank means visible to everybody.
12+
#releasedate: Release date, used to calculate the freeze period. Improvements and new features will not be moved to CLR during freeze. YYYY-MM-DD.
1213

1314
# Let's go strict (exit on error)
1415
set -e
1516

1617
# Verify everything is set
17-
required="WORKSPACE jiraclicmd jiraserver jirauser jirapass jsonclrurl"
18+
required="WORKSPACE jiraclicmd jiraserver jirauser jirapass jsonclrurl releasedate"
1819
for var in $required; do
1920
if [ -z "${!var}" ]; then
2021
echo "Error: ${var} environment variable is not defined. See the script comments."
@@ -92,10 +93,26 @@ echo "Using cached (until ${validuntil}) CLR metadata information."
9293

9394
source ${mydir}/lib.sh # Add all the functions.
9495

96+
# Code freeze date calculated 6 weeks before the release date.
97+
freezedate=$(date -d "${releasedate} -6week" +%Y%m%d)
98+
99+
# On-sync end date calculated 2 weeks after the release date.
100+
onsyncenddate=$(date -d "${releasedate} +2week" +%Y%m%d)
101+
102+
# Today's date.
103+
nowdate=$(date +%Y%m%d)
104+
105+
# We'll exclude New Features and Improvements from the CLR process during the freeze period.
106+
excludequery=""
107+
if [ "${nowdate}" -ge "${freezedate}" ] && [ "${nowdate}" -lt "${onsyncenddate}" ]; then
108+
excludequery="AND issuetype NOT IN ('New Feature', Improvement)"
109+
echo "Today (${nowdate}) is within the freeze period (${freezedate} - ${onsyncenddate}). Improvements and new features will not be moved to the CLR queue."
110+
fi
111+
95112
# Search for all the issues awaiting for integration and not being decided between CLR/IR.
96113
# Note: customfield_10118 is the peer reviewer custom field.
97114
${basereq} --action getIssueList \
98-
--jql "filter = 23535" \
115+
--jql "filter = 23535 ${excludequery}" \
99116
--columns="Key,Assignee,Peer reviewer,Components,Security Level,Summary" \
100117
--outputFormat=4 \
101118
--outputType=json \

tracker_automations/continuous_manage_queues/lib.sh

+2-2
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)