Skip to content

Commit c9f60d5

Browse files
committed
Remove restrictedto parameter
As the ToBiC results are now being posted to the "Automated test results" custom field which is visible to all users who can view the issue, the `restrictedto` parameter is no longer relevant and should be removed.
1 parent f97db08 commit c9f60d5

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

tracker_automations/bulk_prelaunch_jobs/bulk_prelaunch_jobs.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
#schedulemins: Frecuency (in minutes) of the schedule (cron) of this job. IMPORTANT to ensure that they match or there will be issues processed more than once or skipped.
1616
#jobtype: defaulting to "all", allows to just pick one of the available jobs: phpunit, behat-(firefox|chrome|nonjs|all).
1717
#quiet: with any value different from "false", don't perform any action in the Tracker.
18-
#restrictedto: name of the project (MDL) role we want to restrict the comment to. Blank means no restriction.
19-
2018

2119
# Let's go strict (exit on error)
2220
set -e
@@ -150,12 +148,7 @@ while read issue; do
150148

151149
# Execute the criteria postissue. It will perform the needed changes in the tracker for the current issue
152150
if [[ ${quiet} == "false" ]]; then
153-
# Let's see if there is any restriction to the comment in the Tracker
154-
restrictiontype=
155-
if [[ -n "${restrictedto}" ]]; then
156-
restrictiontype=--role
157-
fi
158-
echo " - Sending results to the Tracker (${restrictiontype} ${restrictedto})"
151+
echo " - Sending results to the Tracker"
159152
. "${mydir}/criteria/${criteria}/postissue.sh"
160153
fi
161154
done < "${resultfile}"

0 commit comments

Comments
 (0)