Skip to content

Commit 2bd2447

Browse files
etgottliHowardWolosky
authored andcommitted
Add support for milestones (#62)
Added support for the [Milestone](https://developer.github.com/v3/issues/milestones/) API's for GitHub Issues.
1 parent cd17571 commit 2bd2447

5 files changed

+734
-2
lines changed

GitHubComments.ps1

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ function Get-GitHubComment
2929
Issue number to get comments for. If not supplied, will return back all comments for this repository.
3030
3131
.PARAMETER Sort
32-
How to sort the results, either created or updated. Default: created
32+
How to sort the results.
3333
3434
.PARAMETER Direction
35-
How to list the results, either asc or desc. Ignored without the sort parameter.
35+
How to list the results. Ignored without the sort parameter.
3636
3737
.PARAMETER Since
3838
Only comments updated at or after this time are returned.
@@ -117,6 +117,8 @@ function Get-GitHubComment
117117
$elements = Resolve-RepositoryElements
118118
$OwnerName = $elements.ownerName
119119
$RepositoryName = $elements.repositoryName
120+
$uriFragment = [String]::Empty
121+
$description = [String]::Empty
120122

121123
if ($null -ne $Since)
122124
{

0 commit comments

Comments
 (0)