Skip to content

Commit 8e48859

Browse files
committed
Fix label bug
1 parent c3e69f3 commit 8e48859

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/ChangelogTools.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,23 +350,23 @@ filter Skip-IgnoredChange
350350
{
351351
if ($chgCommitLabel -in $CommitLabel)
352352
{
353-
continue :outer
353+
continue outer
354354
}
355355
}
356356

357357
foreach ($chgIssueLabel in $chg.ClosedIssues.Labels)
358358
{
359359
if ($chgIssueLabel -in $IssueLabel)
360360
{
361-
continue :outer
361+
continue outer
362362
}
363363
}
364364

365365
foreach ($chgPRLabel in $chg.PR.Labels)
366366
{
367367
if ($chgPRLabel -in $PRLabel)
368368
{
369-
continue :outer
369+
continue outer
370370
}
371371
}
372372

0 commit comments

Comments
 (0)