We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ba09eb commit 0c54b24Copy full SHA for 0c54b24
eng/common/scripts/Helpers/ApiView-Helpers.ps1
@@ -262,6 +262,9 @@ function Create-API-Review {
262
$requestParam.Add('pullRequestNumber', $pullRequestNumber)
263
$requestParam.Add('packageName', $requestData.packageName)
264
$requestParam.Add('filePath', $requestData.filePath)
265
+ if ($language -ieq "python") {
266
+ $requestParam.Add('codeFile', Split-Path -Path $requestData.filePath -Leaf)
267
+ }
268
$requestParam.Add('language', $language)
269
$requestUri.query = $requestParam.toString()
270
$correlationId = [System.Guid]::NewGuid().ToString()
0 commit comments