@@ -117,10 +117,6 @@ while [[ $# -gt 0 ]]; do
117117 extraSecretNames=" $2 "
118118 shift 2
119119 ;;
120- --testsToRun) # JSON array of test types to run, overriding test-types.json (optional)
121- testsToRun=" $2 "
122- shift 2
123- ;;
124120 * )
125121 echo " [ERROR] Unknown argument: $1 "
126122 exit 1
@@ -223,10 +219,6 @@ if [[ -z "$extraSecretNames" ]]; then
223219 extraSecretNames=" "
224220fi
225221
226- if [[ -z " $testsToRun " ]]; then
227- testsToRun=" "
228- fi
229-
230222echo " ==================== Workflow Dispatch Parameters ===================="
231223echo " infraRepoName: $infraRepoName "
232224echo " releaseVersion: $releaseVersion "
@@ -266,7 +258,6 @@ DISPATCH_EVENT=$(jq -ncM \
266258 --arg targetDomain " $targetDomain " \
267259 --arg version " $version " \
268260 --argjson extraSecretNames " ${extraSecretNames:- null} " \
269- --argjson testsToRun " ${testsToRun:- null} " \
270261 ' {
271262 "ref": "' " $internalRef " ' ",
272263 "inputs": (
@@ -283,7 +274,6 @@ DISPATCH_EVENT=$(jq -ncM \
283274 (if $targetDomain != "" then { "targetDomain": $targetDomain } else {} end) +
284275 (if $version != "" then { "version": $version } else {} end) +
285276 (if $extraSecretNames != null then { "extraSecretNames": ($extraSecretNames | tojson) } else {} end) +
286- (if $testsToRun != null then { "testsToRun": ($testsToRun | tojson) } else {} end) +
287277 (if $targetAccountGroup != "" then { "targetAccountGroup": $targetAccountGroup } else {} end) +
288278 {
289279 "releaseVersion": $releaseVersion,
0 commit comments