-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Breaking API ChangePR will require a bump to the major version num in next release. Look here to see the change(s).PR will require a bump to the major version num in next release. Look here to see the change(s).good first issue
Description
Sort
and Direction
not work since GitHub changed its API.
https://developer.github.com/v3/repos/commits/#list-commits
go-github/github/issues_comments.go
Lines 37 to 48 in e881974
type IssueListCommentsOptions struct { | |
// Sort specifies how to sort comments. Possible values are: created, updated. | |
Sort *string `url:"sort,omitempty"` | |
// Direction in which to sort comments. Possible values are: asc, desc. | |
Direction *string `url:"direction,omitempty"` | |
// Since filters comments by time. | |
Since *time.Time `url:"since,omitempty"` | |
ListOptions | |
} |
Metadata
Metadata
Assignees
Labels
Breaking API ChangePR will require a bump to the major version num in next release. Look here to see the change(s).PR will require a bump to the major version num in next release. Look here to see the change(s).good first issue