Skip to content

Commit ad07b75

Browse files
committed
Fix bug in ReleaseTools (Ignore, not Include)
1 parent 233fb60 commit ad07b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ReleaseTools.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function Update-Changelog {
186186
$Bullets = $Repo | Get-GitHubPullRequest -State All |
187187
Where-Object { $_.merge_commit_sha -in $Commits } |
188188
Where-Object { -not $_.user.UserName.EndsWith("[bot]") } |
189-
Where-Object { "Include" -notin $_.labels.LabelName } |
189+
Where-Object { "Ignore" -notin $_.labels.LabelName } |
190190
Where-Object { -not $_.title.StartsWith("[Ignore]") } |
191191
Where-Object { -not $_.title.StartsWith("Update CHANGELOG") } |
192192
Where-Object { -not $_.title.StartsWith("Bump version") } |

0 commit comments

Comments
 (0)