Implement the Github Pull Requests API: http://developer.github.com/v3/pulls/
Implement the Github Pull Requests API: http://developer.github.com/v3/pulls/
(comments user repo id & [options])
List comments on a pull request.
List comments on a pull request.
(commits user repo id & [options])
List the commits on a pull request.
List the commits on a pull request.
(create-comment user repo pr-number sha path position body options)
Create a comment on a pull request.
Create a comment on a pull request.
(create-pull user repo from base head options)
Create a new pull request. If from is a number, it is considered to be an issue number on the repository in question. If this is used, the pull request will be created from the existing issue. If it is a string it is considered to be a title. base is the branch or ref that you want your changes pulled into, and head is the branch or ref where your changes are implemented. Options are: body -- The body of the pull request text. Only applies when not creating a pull request from an issue.
Create a new pull request. If from is a number, it is considered to be an issue number on the repository in question. If this is used, the pull request will be created from the existing issue. If it is a string it is considered to be a title. base is the branch or ref that you want your changes pulled into, and head is the branch or ref where your changes are implemented. Options are: body -- The body of the pull request text. Only applies when not creating a pull request from an issue.
(delete-comment user repo id options)
Delete a comment on a pull request.
Delete a comment on a pull request.
(edit-comment user repo id body options)
Edit a comment on a pull request.
Edit a comment on a pull request.
(edit-pull user repo id options)
Edit a pull request. Options are: title -- a new title. body -- a new body. state -- open or closed.
Edit a pull request. Options are: title -- a new title. body -- a new body. state -- open or closed.
(files user repo id & [options])
List the files on a pull request.
List the files on a pull request.
(merge user repo id options)
Merge a pull request. Options are: commit-message -- A commit message for the merge commit.
Merge a pull request. Options are: commit-message -- A commit message for the merge commit.
(merged? user repo id & [options])
Check if a pull request has been merged.
Check if a pull request has been merged.
(pulls user repo & [options])
List pull requests on a repo. Options are: state -- open (default), closed.
List pull requests on a repo. Options are: state -- open (default), closed.
(repo-comments user repo & [options])
List pull request comments in a repository.
List pull request comments in a repository.
(specific-comment user repo id & [options])
Get a specific comment on a pull request.
Get a specific comment on a pull request.
(specific-pull user repo id & [options])
Get a specific pull request.
Get a specific pull request.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close