Skip to content

Commit

Permalink
Skip Monitor for upcoming-breaking-changes.md generation
Browse files Browse the repository at this point in the history
  • Loading branch information
msJinLei committed Sep 25, 2024
1 parent a92bfed commit 852b3ff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/BreakingChanges/GetUpcomingBreakingChange.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ Function Export-AllBreakingChangeMessageUnderArtifacts
$AllModuleList = Get-ChildItem -Path $ArtifactsPath -Filter Az.* | ForEach-Object { $_.Name }
ForEach ($ModuleName In $AllModuleList)
{
$Result += Export-BreakingChangeMessageOfModule -ArtifactsPath $ArtifactsPath -ModuleName $ModuleName
if ($ModuleName -ne "Az.Monitor")
{
$Result += Export-BreakingChangeMessageOfModule -ArtifactsPath $ArtifactsPath -ModuleName $ModuleName
}

}
$Result | Out-File -FilePath $MarkdownPath -Force
}

0 comments on commit 852b3ff

Please sign in to comment.