Skip to content

Commit 5419ed9

Browse files
authored
[Ignore] Fix attribution error in changelog script, update my email (#1539)
1 parent ab40a53 commit 5419ed9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/Get-PowerShellExtensionChangelog.ps1

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ $Script:powershell_team = @(
5252

5353
$Script:powershell_team_emails = @(
5454
55-
"rjmholt@gmail.com"
55+
"rjmholt_msft@outlook.com"
5656
)
5757

5858
# Very active contributors; keep their email-login mappings here to save a few queries to Github.
@@ -311,6 +311,7 @@ function Get-ChangeLog
311311
$message = $commit.Subject
312312
}
313313

314+
$userToThank = $null
314315
if (-not ($commit.AuthorEmail.EndsWith("@microsoft.com") -or ($powershell_team -contains $commit.AuthorName) -or ($powershell_team_emails -contains $commit.AuthorEmail))) {
315316
if ($Script:community_login_map.ContainsKey($commit.AuthorEmail)) {
316317
$commit.AuthorGitHubLogin = $Script:community_login_map[$commit.AuthorEmail]

0 commit comments

Comments
 (0)