Skip to content

Commit

Permalink
[Ignore] Fix attribution error in changelog script, update my email (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmholt authored Sep 25, 2018
1 parent ab40a53 commit 5419ed9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/Get-PowerShellExtensionChangelog.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ $Script:powershell_team = @(

$Script:powershell_team_emails = @(
"tylerl0706@gmail.com"
"rjmholt@gmail.com"
"rjmholt_msft@outlook.com"
)

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

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

0 comments on commit 5419ed9

Please sign in to comment.