We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885b6ca commit 4cbf7a5Copy full SHA for 4cbf7a5
eng/common/scripts/Helpers/ApiView-Helpers.ps1
@@ -180,14 +180,15 @@ function Set-ApiViewCommentForPR {
180
$commentText += "APIView identified API level changes in this PR and created the following API reviews"
181
$commentText += ""
182
183
+ $responseContent = $response.Content | ConvertFrom-Json
184
if ($RepoName.StartsWith(("azure-sdk-for-"))) {
- $response | ForEach-Object {
185
+ $responseContent | ForEach-Object {
186
$commentText += "[$($_.packageName)]($($_.url))"
187
}
188
} else {
189
$commentText += "| Language | API Review for Package |"
190
$commentText += "|----------|---------|"
191
192
$commentText += "| $($_.language) | [$($_.packageName)]($($_.url)) |"
193
194
0 commit comments