Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for milestones #62

Merged
merged 9 commits into from
Dec 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions GitHubComments.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ function Get-GitHubComment
Issue number to get comments for. If not supplied, will return back all comments for this repository.

.PARAMETER Sort
How to sort the results, either created or updated. Default: created
How to sort the results.

.PARAMETER Direction
How to list the results, either asc or desc. Ignored without the sort parameter.
How to list the results. Ignored without the sort parameter.

.PARAMETER Since
Only comments updated at or after this time are returned.
Expand Down Expand Up @@ -117,6 +117,8 @@ function Get-GitHubComment
$elements = Resolve-RepositoryElements
$OwnerName = $elements.ownerName
$RepositoryName = $elements.repositoryName
$uriFragment = [String]::Empty
$description = [String]::Empty

if ($null -ne $Since)
{
Expand Down
Loading