@@ -51,32 +51,32 @@ ForEach ($Step In $DependencyStepList)
5151
5252$Steps  =  @ (
5353    @ {
54-         StepName  =  " breaking-change" 
54+         PhaseName  =  " breaking-change" 
5555        IssuePath  =  " $StaticAnalysisOutputDirectory /BreakingChangeIssues.csv" 
5656    }, 
5757    @ {
58-         StepName  =  " help" 
58+         PhaseName  =  " help" 
5959        IssuePath  =  " $StaticAnalysisOutputDirectory /HelpIssues.csv" 
6060    }, 
6161    @ {
62-         StepName  =  " help-example" 
62+         PhaseName  =  " help-example" 
6363        IssuePath  =  " $StaticAnalysisOutputDirectory /ExampleIssues.csv" 
6464    }, 
6565    @ {
66-         StepName  =  " signature" 
66+         PhaseName  =  " signature" 
6767        IssuePath  =  " $StaticAnalysisOutputDirectory /SignatureIssues.csv" 
6868    }, 
6969    @ {
70-         StepName  =  " file-change" 
70+         PhaseName  =  " file-change" 
7171        IssuePath  =  " $StaticAnalysisOutputDirectory /FileChangeIssue.csv" 
7272    }
7373)
7474
7575ForEach  ($Step  In  $Steps )
7676{
77-     $StepName   =  $Step.StepName   
77+     $PhaseName   =  $Step.PhaseName   
7878    $IssuePath  =  $Step.IssuePath  
79-     $Details  =  $Template .$StepName .Details  
79+     $Details  =  $Template .$PhaseName .Details  
8080    If  ($Details.Length   -Ne  0 )
8181    {
8282        $Details  =  $Details [0 ]
@@ -115,11 +115,11 @@ ForEach ($Step In $Steps)
115115            {
116116                # Region generate table head of each step
117117                $NormalSteps  =  [System.Collections.Generic.HashSet [String ]]@ (" breaking-change" ,  " help" ,  " signature" ,  " file-change" 
118-                 If  ($NormalSteps.Contains  ($StepName  ))
118+                 If  ($NormalSteps.Contains  ($PhaseName  ))
119119                {
120120                    $Content  =  " |Type|Cmdlet|Description|Remediation|`n |---|---|---|---|`n " 
121121                }
122-                 ElseIf  ($StepName   -Eq  " help-example" 
122+                 ElseIf  ($PhaseName   -Eq  " help-example" 
123123                {
124124                    $Content  =  " |Type|Cmdlet|Example|Line|RuleName|Description|Extent|Remediation|`n |---|---|---|---|---|---|---|---|`n " 
125125                }
@@ -136,11 +136,11 @@ ForEach ($Step In $Steps)
136136                        $ErrorTypeEmoji  =  " ⚠️" 
137137                    }
138138                    # Region generate table content of each step
139-                     If  ($NormalSteps.Contains  ($StepName  ))
139+                     If  ($NormalSteps.Contains  ($PhaseName  ))
140140                    {
141141                        $Content  +=  " |$ErrorTypeEmoji |$ ( $Issue.Target  ) |$ ( $Issue.Description  ) |$ ( $Issue.Remediation  ) |`n " 
142142                    }
143-                     ElseIf  ($StepName   -Eq  " help-example" 
143+                     ElseIf  ($PhaseName   -Eq  " help-example" 
144144                    {
145145                        $Content  +=  " |$ErrorTypeEmoji |$ ( $Issue.Target  ) |$ ( $Issue.Example  ) |$ ( $Issue.Line  ) |$ ( $Issue.RuleName  ) |$ ( $Issue.Description  ) |$ ( $Issue.Extent  ) |$ ( $Issue.Remediation  ) |`n " 
146146                    }
0 commit comments