Skip to content

Commit

Permalink
Fix typo that prevent tag(s) to be assigned to new issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lazywinadmin authored and HowardWolosky committed Dec 14, 2018
1 parent 8cea80d commit 3b6e84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitHubIssues.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3b6e84c

Please sign in to comment.