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 7bd6787 commit 1b2e822Copy full SHA for 1b2e822
eng/common/scripts/Package-Properties.ps1
@@ -320,7 +320,9 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
320
# packages. We should never return NO validation.
321
if ($packagesWithChanges.Count -eq 0) {
322
$packagesWithChanges += ($allPackageProperties | Where-Object { $_.ServiceDirectory -eq "template" })
323
- $packagesWithChanges[0].IncludedForValidation = $true
+ foreach ($package in $packagesWithChanges) {
324
+ $package.IncludedForValidation = $true
325
+ }
326
}
327
328
return $packagesWithChanges
0 commit comments