Liking cljdoc? Tell your friends :D

tentacles.pulls

Implement the Github Pull Requests API: http://developer.github.com/v3/pulls/

Implement the Github Pull Requests API: http://developer.github.com/v3/pulls/
raw docstring

comment-reactionsclj

(comment-reactions user repo comment-id & [options])
source

commentsclj

(comments user repo id & [options])

List comments on a pull request.

List comments on a pull request.
sourceraw docstring

commitsclj

(commits user repo id & [options])

List the commits on a pull request.

List the commits on a pull request.
sourceraw docstring

create-commentclj

(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.
sourceraw docstring

create-pullclj

(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.
sourceraw docstring

delete-commentclj

(delete-comment user repo id options)

Delete a comment on a pull request.

Delete a comment on a pull request.
sourceraw docstring

edit-commentclj

(edit-comment user repo id body options)

Edit a comment on a pull request.

Edit a comment on a pull request.
sourceraw docstring

edit-pullclj

(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.
sourceraw docstring

filesclj

(files user repo id & [options])

List the files on a pull request.

List the files on a pull request.
sourceraw docstring

mergeclj

(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.
sourceraw docstring

merged?clj

(merged? user repo id & [options])

Check if a pull request has been merged.

Check if a pull request has been merged.
sourceraw docstring

pullsclj

(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.
sourceraw docstring

repo-commentsclj

(repo-comments user repo & [options])

List pull request comments in a repository.

List pull request comments in a repository.
sourceraw docstring

specific-commentclj

(specific-comment user repo id & [options])

Get a specific comment on a pull request.

Get a specific comment on a pull request.
sourceraw docstring

specific-pullclj

(specific-pull user repo id & [options])

Get a specific pull request.

Get a specific pull request.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close