We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent febfb33 commit 818ad2fCopy full SHA for 818ad2f
tools/ReleaseTools.psm1
@@ -162,8 +162,8 @@ function Update-Changelog {
162
$Release = $Repo | Get-GitHubRelease -Latest
163
$Commits = git rev-list "$($Release.tag_name)..."
164
165
- # NOTE: This is a slow API as it gets all closed PRs, and then filters.
166
- $Bullets = $Repo | Get-GitHubPullRequest -State Closed |
+ # NOTE: This is a slow API as it gets all PRs, and then filters.
+ $Bullets = $Repo | Get-GitHubPullRequest -State All |
167
Where-Object { $_.merge_commit_sha -in $Commits } |
168
Where-Object { -not $_.user.UserName.EndsWith("[bot]") } |
169
Where-Object { -not $_.title.StartsWith("[Ignore]") } |
0 commit comments