Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/scripts/Create-APIView.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

. $PSScriptRoot/ChangedFiles-Functions.ps1
. $PSScriptRoot/../common/scripts/logging.ps1
Expand Down Expand Up @@ -464,7 +464,7 @@
LogGroupEnd
foreach ($typeSpecProject in $typeSpecProjects) {
# Skip Baseline APIView Token for new projects
if (!(Test-Path -Path $typeSpecProject)) {
if (!(Test-Path -Path (Join-Path $typeSpecProject "tspconfig.yaml"))) {
Write-Host "TypeSpec project $typeSpecProject is not found in pull request target branch. API review will not have a baseline revision."
}
else {
Expand Down
Loading