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 e5098c3 commit a6b16ddCopy full SHA for a6b16dd
tools/StaticAnalysis/FileChangeAnalyzer/Test-FileChange.ps1
@@ -30,6 +30,10 @@ $UpdatedChangeLogs = @{}
30
31
ForEach ($FilePath In ($FilesChanged | Where-Object { $_.EndsWith("ChangeLog.md") }))
32
{
33
+ If ($FilePath -eq "ChangeLog.md") # Skip for the ChangeLog.md at root folder
34
+ {
35
+ continue
36
+ }
37
$ModuleName = $FilePath.Split("/")[1]
38
$UpdatedChangeLogs.Add($ModuleName, $FilePath)
39
}
0 commit comments