Skip to content

Commit a652a9e

Browse files
authored
fix: Split ALL_CHANGED_FILES on any whitespace (#1566)
1 parent d4c61d1 commit a652a9e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/scripts/Filter-TestProjects.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function Filter-TestProjects {
117117

118118
Begin {
119119
$script:branch = $env:GITHUB_REF_NAME
120-
$script:allChangedFiles = $env:ALL_CHANGED_FILES -Split "`n"
120+
$script:allChangedFiles = $env:ALL_CHANGED_FILES -Split "[\s\t\n]"
121121
$script:filteredModules = @()
122122

123123
Write-Host "Filtering test projects for branch '$script:branch'."

.github/workflows/cicd.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ name: Continuous Integration & Delivery
33
on:
44
push:
55
branches: [ develop, main, bugfix/*, feature/* ]
6-
paths-ignore: [ 'docs/**', 'examples/**' ]
76
pull_request:
87
branches: [ develop, main ]
9-
paths-ignore: [ 'docs/**', 'examples/**' ]
108
workflow_dispatch:
119
inputs:
1210
publish_nuget_package:

0 commit comments

Comments
 (0)