diff options
| author | JakobL-MSFT <[email protected]> | 2024-01-14 20:02:42 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-14 20:02:42 -0800 |
| commit | 1e9dd4a500f0407ddf6f69fd9413733c069e945f (patch) | |
| tree | ece972dfe1d139c1e71b62b4e14da9a506845da1 /.github/scripts | |
| parent | 8b9348eb091b558a8d4b4c6a60b44e872069a8da (diff) | |
Bug 45018002: WDK: Samples - Sample not build by PR workflow if exclusion is removed (#1073)
user/jakobl/full_build_trigger_by_exclusions_csv
Diffstat (limited to '.github/scripts')
| -rw-r--r-- | .github/scripts/Build-ChangedSamples.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/Build-ChangedSamples.ps1 b/.github/scripts/Build-ChangedSamples.ps1 index 21fbe6bb..f7dc95f5 100644 --- a/.github/scripts/Build-ChangedSamples.ps1 +++ b/.github/scripts/Build-ChangedSamples.ps1 @@ -22,7 +22,7 @@ foreach ($file in $ChangedFiles) { $filename = Split-Path $file -Leaf # Files that can affect how every sample is built should trigger a full build - if ($filename -eq "Build-AllSamples.ps1" -or $filename -eq "Build-Sample.ps1" -or $filename -eq "Build-SampleSet.ps1") { + if ($filename -eq "Build-AllSamples.ps1" -or $filename -eq "Build-Sample.ps1" -or $filename -eq "Build-SampleSet.ps1" -or $filename -eq "exclusions.csv") { $buildAll = $true } if ($dir -like "$root\.github\scripts" -or $dir -like "$root\.github\scripts\*") { |
