From 91aed17120a9022474cb8721fef817c864c0b887 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 10:00:49 -0800 Subject: [PATCH] removing more writes (#208) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body * handling empty description and newlines better * handling null string value * removing more writes --------- Co-authored-by: Chris Schraer --- scripts/ADOCreateFeature.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ADOCreateFeature.ps1 b/scripts/ADOCreateFeature.ps1 index 2884918f..cc8ecb90 100644 --- a/scripts/ADOCreateFeature.ps1 +++ b/scripts/ADOCreateFeature.ps1 @@ -41,8 +41,6 @@ $headers = @{ # Make the REST API call to create the work item $response = Invoke-RestMethod -Uri $url -Method Post -Body $bodyJson -Headers $headers -Write-Host "Work item created with response: $response" -Write-Host "Work item created with ID: $($response.id)" # Output the ID of the new work item $($response.id)