Skip to content

Commit

Permalink
test Changes manually
Browse files Browse the repository at this point in the history
  • Loading branch information
chidozieononiwu committed Jan 30, 2025
1 parent 86b795c commit 5577a33
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion eng/common/scripts/Detect-Api-Changes.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,14 @@ if (!($FindArtifactForApiReviewFn -and (Test-Path "Function:$FindArtifactForApiR
$responses = @{}

$packageProperties = Get-ChildItem -Recurse -Force "$configFileDir" `
| Where-Object { $_.Extension -eq '.json' -and $_.FullName -notmatch '\\_.*?\\' }
| ForEach-Object {
$normalizedPath = $_.FullName -replace '\\', '/'
Write-Host "Processing: $normalizedPath"
if ($_.Extension -eq '.json' -and $normalizedPath -notlike '*/_*/*') {
Write-Host "Included: $normalizedPath"
$_
}
}

Write-Host "Package Properties: $($packageProperties.Count)"
Write-Host "$packageProperties"
Expand Down

0 comments on commit 5577a33

Please sign in to comment.