Skip to content
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