Comments
WebService::GitHub::Repos::Comments
Create a commit comment
WebService::GitHub::Repos::Comments.create-commit-comment( Str $owner
, Str $repo
, Str $commit-sha
, Str :$body!
, Int(Str) :$line
, Int(Str) :$position
, Str :$path
)
Delete a commit comment
WebService::GitHub::Repos::Comments.delete-commit-comment( Str $owner
, Str $repo
, Int(Str) $comment-id
)
Get a commit comment
WebService::GitHub::Repos::Comments.get-commit-comment( Str $owner
, Str $repo
, Int(Str) $comment-id
)
List commit comments
WebService::GitHub::Repos::Comments.list-comments-for-commit( Str $owner
, Str $repo
, Str $commit-sha
, Int(Str) :$per-page
, Int(Str) :$page
)
List commit comments for a repository
WebService::GitHub::Repos::Comments.list-commit-comments-for-repo( Str $owner
, Str $repo
, Int(Str) :$per-page
, Int(Str) :$page
)
Update a commit comment
WebService::GitHub::Repos::Comments.update-commit-comment( Str $owner
, Str $repo
, Int(Str) $comment-id
, Str :$body!
)