Do not log email address (#5037)

This commit is contained in:
Daniel Jurek 2023-10-13 11:21:33 -07:00 committed by GitHub
parent 50e3a0e8fb
commit f0a379bf21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ if (!$allUsers) {
$targetUser = $allUsers.Where({ $_.aad.userPrincipalName -eq $EmailAddress -and $_.github.login }, 'First')
if (!$targetUser) {
Write-Host "Failed to find GitHub user for $EmailAddress"
Write-Host "Failed to find GitHub user for triggering user"
return $Fallback
}