File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
tracker_automations/bulk_prelaunch_jobs Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -144,11 +144,11 @@ while read issue; do
144144 # Execute the criteria postissue. It will perform the needed changes in the tracker for the current issue
145145 if [[ ${quiet} == " false" ]]; then
146146 # Let's see if there is any restriction to the comment in the Tracker
147- commentrestriction =
147+ restrictiontype =
148148 if [[ -n " ${restrictedto} " ]]; then
149- commentrestriction= " --role $restrictedto "
149+ restrictiontype= --role
150150 fi
151- echo " - Sending results to the Tracker"
151+ echo " - Sending results to the Tracker ( ${restrictiontype} ${restrictedto} ) "
152152 . " ${mydir} /criteria/${criteria} /postissue.sh"
153153 fi
154154done < " ${resultfile} "
Original file line number Diff line number Diff line change 11# Add the comment with results.
22${basereq} --action addComment \
33 --issue ${issue} \
4- --file " ${resultfile} .${issue} .txt" ${commentrestriction}
4+ --file " ${resultfile} .${issue} .txt" ${restrictiontype} " ${restrictedto} "
Original file line number Diff line number Diff line change 11# Add the comment with results.
22${basereq} --action addComment \
33 --issue ${issue} \
4- --file " ${resultfile} .${issue} .txt" ${commentrestriction}
4+ --file " ${resultfile} .${issue} .txt" ${restrictiontype} " ${restrictedto} "
Original file line number Diff line number Diff line change 11# Add the comment with results.
22${basereq} --action addComment \
33 --issue ${issue} \
4- --file " ${resultfile} .${issue} .txt" ${commentrestriction}
4+ --file " ${resultfile} .${issue} .txt" ${restrictiontype} " ${restrictedto} "
You can’t perform that action at this time.
0 commit comments