Fix typo that prevent tag(s) to be assigned to new issue

This commit is contained in:
Francois-Xavier Cat 2018-12-13 19:22:43 -08:00 коммит произвёл Howard Wolosky
Родитель 8cea80dc1f
Коммит 3b6e84cbaf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -509,7 +509,7 @@ function New-GitHubIssue
if ($PSBoundParameters.ContainsKey('Body')) { $hashBody['body'] = $Body }
if ($PSBoundParameters.ContainsKey('Assignee')) { $hashBody['assignees'] = @($Assignee) }
if ($PSBoundParameters.ContainsKey('Milestone')) { $hashBody['milestone'] = $Milestone }
if ($PSBoundParameters.ContainsKey('Label')) { $hashBody['label'] = @($Label) }
if ($PSBoundParameters.ContainsKey('Label')) { $hashBody['labels'] = @($Label) }
$params = @{
'UriFragment' = "/repos/$OwnerName/$RepositoryName/issues"