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 815d75c commit 4118c3bCopy full SHA for 4118c3b
2 files changed
.github/scripts/Filter-TestProjects.ps1
@@ -117,7 +117,7 @@ function Filter-TestProjects {
117
118
Begin {
119
$script:branch = $env:GITHUB_REF_NAME
120
- $script:allChangedFiles = $env:ALL_CHANGED_FILES -Split "[\s\t\n]"
+ $script:allChangedFiles = $env:ALL_CHANGED_FILES -Split "`n"
121
$script:filteredModules = @()
122
123
Write-Host "Filtering test projects for branch '$script:branch'."
.github/workflows/cicd.yml
@@ -40,6 +40,8 @@ jobs:
40
- id: get-all-changed-files
41
name: Collect Changed Files
42
uses: tj-actions/changed-files@v47
43
+ with:
44
+ separator: \n
45
46
- id: set-test-projects
47
name: Collect Test Projects
0 commit comments