Module: Octokit::Client::PullRequests

Included in:
Octokit::Client
Defined in:
lib/octokit/client/pull_requests.rb

Overview

Methods for the Pull Requests API

Instance Method Summary collapse

Instance Method Details

#close_pull_request(repo, number, options = {}) ⇒ Sawyer::Resource

Close a pull request

Examples:

@client.close_pull_request('octokit/octokit.rb', 67)

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository.

  • number (Integer)

    Number of pull request to update.

Returns:

  • (Sawyer::Resource)

    Hash representing updated pull request.

See Also:



117
118
119
120
# File 'lib/octokit/client/pull_requests.rb', line 117

def close_pull_request(repo, number, options = {})
  options.merge! :state => 'closed'
  update_pull_request(repo, number, options)
end

#create_pull_request(repo, base, head, title, body, options = {}) ⇒ Sawyer::Resource

Create a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • base (String)

    The branch (or git ref) you want your changes pulled into. This should be an existing branch on the current repository. You cannot submit a pull request to one repo that requests a merge to a base of another repo.

  • head (String)

    The branch (or git ref) where your changes are implemented.

  • title (String)

    Title for the pull request

  • body (String)

    The body for the pull request. Supports GFM.

Returns:

  • (Sawyer::Resource)

    The newly created pull request

See Also:



47
48
49
50
51
52
53
54
55
# File 'lib/octokit/client/pull_requests.rb', line 47

def create_pull_request(repo, base, head, title, body, options = {})
  pull = {
    :base  => base,
    :head  => head,
    :title => title,
    :body  => body,
  }
  post "repos/#{Repository.new(repo)}/pulls", options.merge(pull)
end

#create_pull_request_comment(repo, pull_id, body, commit_id, path, position, options = {}) ⇒ Sawyer::Resource Also known as: create_pull_comment, create_view_comment

Create a pull request comment

Examples:

@client.create_pull_request_comment("octokit/octokit.rb", 163, ":shipit:",
  "2d3201e4440903d8b04a5487842053ca4883e5f0", "lib/octokit/request.rb", 47)

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • pull_id (Integer)

    Pull request id

  • body (String)

    Comment content

  • commit_id (String)

    Sha of the commit to comment on.

  • path (String)

    Relative path of the file to comment on.

  • position (Integer)

    Line index in the diff to comment on.

Returns:

  • (Sawyer::Resource)

    Hash representing the new comment

See Also:



204
205
206
207
208
209
210
211
212
# File 'lib/octokit/client/pull_requests.rb', line 204

def create_pull_request_comment(repo, pull_id, body, commit_id, path, position, options = {})
  options.merge!({
    :body => body,
    :commit_id => commit_id,
    :path => path,
    :position => position
  })
  post "repos/#{Repository.new repo}/pulls/#{pull_id}/comments", options
end

#create_pull_request_comment_reply(repo, pull_id, body, comment_id, options = {}) ⇒ Sawyer::Resource Also known as: create_pull_reply, create_review_reply

Create reply to a pull request comment

Examples:

@client.create_pull_request_comment_reply("octokit/octokit.rb", 1903950, "done.")

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • pull_id (Integer)

    Pull request id

  • body (String)

    Comment contents

  • comment_id (Integer)

    Comment id to reply to

Returns:

  • (Sawyer::Resource)

    Hash representing new comment

See Also:



226
227
228
229
230
231
232
# File 'lib/octokit/client/pull_requests.rb', line 226

def create_pull_request_comment_reply(repo, pull_id, body, comment_id, options = {})
  options.merge!({
    :body => body,
    :in_reply_to => comment_id
  })
  post "repos/#{Repository.new repo}/pulls/#{pull_id}/comments", options
end

#create_pull_request_for_issue(repo, base, head, issue, options = {}) ⇒ Sawyer::Resource

Create a pull request from existing issue

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • base (String)

    The branch (or git ref) you want your changes pulled into. This should be an existing branch on the current repository. You cannot submit a pull request to one repo that requests a merge to a base of another repo.

  • head (String)

    The branch (or git ref) where your changes are implemented.

  • issue (Integer)

    Number of Issue on which to base this pull request

Returns:

  • (Sawyer::Resource)

    The newly created pull request

See Also:



68
69
70
71
72
73
74
75
# File 'lib/octokit/client/pull_requests.rb', line 68

def create_pull_request_for_issue(repo, base, head, issue, options = {})
  pull = {
    :base  => base,
    :head  => head,
    :issue => issue
  }
  post "repos/#{Repository.new(repo)}/pulls", options.merge(pull)
end

#delete_pull_request_comment(repo, comment_id, options = {}) ⇒ Boolean Also known as: delete_pull_comment, delete_review_comment

Delete pull request comment

Examples:

@client.delete_pull_request_comment("octokit/octokit.rb", 1902707)

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • comment_id (Integer)

    Id of the comment to delete

Returns:

  • (Boolean)

    True if deleted, false otherwise



259
260
261
# File 'lib/octokit/client/pull_requests.rb', line 259

def delete_pull_request_comment(repo, comment_id, options = {})
  boolean_from_response(:delete, "repos/#{Repository.new repo}/pulls/comments/#{comment_id}", options)
end

#merge_pull_request(repo, number, commit_message = '', options = {}) ⇒ Array<Sawyer::Resource>

Merge a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of pull request

  • commit_message (String) (defaults to: '')

    Optional commit message for the merge commit

Returns:

  • (Array<Sawyer::Resource>)

    Merge commit info if successful

See Also:



283
284
285
# File 'lib/octokit/client/pull_requests.rb', line 283

def merge_pull_request(repo, number, commit_message='', options = {})
  put "repos/#{Repository.new(repo)}/pulls/#{number}/merge", options.merge({:commit_message => commit_message})
end

#pull_merged?(repo, number, options = {}) ⇒ Boolean Also known as: pull_request_merged?

Check pull request merge status

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of pull request

Returns:

  • (Boolean)

    True if the pull request has been merged

See Also:



293
294
295
# File 'lib/octokit/client/pull_requests.rb', line 293

def pull_merged?(repo, number, options = {})
  boolean_from_response :get, "repos/#{Repository.new(repo)}/pulls/#{number}/merge", options
end

#pull_request(repo, number, options = {}) ⇒ Sawyer::Resource Also known as: pull

Get a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of the pull request to fetch

Returns:

  • (Sawyer::Resource)

    Pull request info

See Also:



30
31
32
# File 'lib/octokit/client/pull_requests.rb', line 30

def pull_request(repo, number, options = {})
  get "repos/#{Repository.new(repo)}/pulls/#{number}", options
end

#pull_request_comment(repo, comment_id, options = {}) ⇒ Sawyer::Resource Also known as: pull_comment, review_comment

Get a pull request comment

Examples:

@client.pull_request_comment("pengwynn/octkit", 1903950)

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • comment_id (Integer)

    Id of comment to get

Returns:

  • (Sawyer::Resource)

    Hash representing the comment

See Also:



185
186
187
# File 'lib/octokit/client/pull_requests.rb', line 185

def pull_request_comment(repo, comment_id, options = {})
  get "repos/#{Repository.new repo}/pulls/comments/#{comment_id}", options
end

#pull_request_comments(repo, number, options = {}) ⇒ Array<Sawyer::Resource> Also known as: pull_comments, review_comments

List comments on a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of pull request

Returns:

  • (Array<Sawyer::Resource>)

    List of comments

See Also:



170
171
172
173
# File 'lib/octokit/client/pull_requests.rb', line 170

def pull_request_comments(repo, number, options = {})
  # return the comments for a pull request
  get "repos/#{Repository.new(repo)}/pulls/#{number}/comments", options
end

#pull_request_commits(repo, number, options = {}) ⇒ Array<Sawyer::Resource> Also known as: pull_commits

List commits on a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of pull request

Returns:

  • (Array<Sawyer::Resource>)

    List of commits

See Also:



128
129
130
# File 'lib/octokit/client/pull_requests.rb', line 128

def pull_request_commits(repo, number, options = {})
  get "repos/#{Repository.new(repo)}/pulls/#{number}/commits", options
end

#pull_request_files(repo, number, options = {}) ⇒ Array<Sawyer::Resource> Also known as: pull_files

List files on a pull request

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • number (Integer)

    Number of pull request

Returns:

  • (Array<Sawyer::Resource>)

    List of files

See Also:



271
272
273
# File 'lib/octokit/client/pull_requests.rb', line 271

def pull_request_files(repo, number, options = {})
  get "repos/#{Repository.new(repo)}/pulls/#{number}/files", options
end

#pull_requests(repo, state = nil, options = {}) ⇒ Array<Sawyer::Resource> Also known as: pulls

List pull requests for a repository

Examples:

Octokit.pull_requests('rails/rails')

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • options (Hash) (defaults to: {})

    Method options

Options Hash (options):

  • :state (String)

    ‘open` or `closed`. Default is `open`.

Returns:

  • (Array<Sawyer::Resource>)

    Array of pulls

See Also:



18
19
20
21
# File 'lib/octokit/client/pull_requests.rb', line 18

def pull_requests(repo, state = nil, options = {})
  options[:state] = state if state
  get "repos/#{Repository.new(repo)}/pulls", options
end

#pull_requests_comments(repo, options = {}) ⇒ Array Also known as: pulls_comments, reviews_comments

List pull request comments for a repository

By default, Review Comments are ordered by ascending ID.

Examples:

Get the pull request review comments in the octokit repository

@client.issues_comments("octokit/octokit.rb")

Get review comments, sort by updated asc since a time

@client.pull_requests_comments("octokit/octokit.rb", {
  :sort => 'asc',
  :direction => 'down',
  :since => '2010-05-04T23:45:02Z'
})

Parameters:

  • repo (String, Repository, Hash)

    A GitHub repository

  • options (Hash) (defaults to: {})

    Optional parameters

Options Hash (options):

  • :sort (String)

    created or updated

  • :direction (String)

    asc or desc. Ignored without sort parameter.

  • :since (String)

    Timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ

Returns:

  • (Array)

    List of pull request review comments.

See Also:



158
159
160
# File 'lib/octokit/client/pull_requests.rb', line 158

def pull_requests_comments(repo, options = {})
  get("repos/#{Repository.new repo}/pulls/comments", options)
end

#update_pull_request(repo, id, title = nil, body = nil, state = nil, options = {}) ⇒ Sawyer::Resource #update_pull_request(repo, id, options = {}) ⇒ Sawyer::Resource

Update a pull request

Examples:

@client.update_pull_request('octokit/octokit.rb', 67, 'new title', 'updated body', 'closed')

Passing nil for optional attributes to update specific attributes.

@client.update_pull_request('octokit/octokit.rb', 67, nil, nil, 'open')

Empty body by passing empty string

@client.update_pull_request('octokit/octokit.rb', 67, nil, '')

Overloads:

  • #update_pull_request(repo, id, title = nil, body = nil, state = nil, options = {}) ⇒ Sawyer::Resource
    Deprecated.

    Parameters:

    • repo (String, Hash, Repository)

      A GitHub repository.

    • number (Integer)

      Number of pull request to update.

    • title (String) (defaults to: nil)

      Title for the pull request.

    • body (String) (defaults to: nil)

      Body content for pull request. Supports GFM.

    • state (String) (defaults to: nil)

      State of the pull request. ‘open` or `closed`.

  • #update_pull_request(repo, id, options = {}) ⇒ Sawyer::Resource

    Parameters:

    • repo (String, Hash, Repository)

      A GitHub repository.

    • number (Integer)

      Number of pull request to update.

    Options Hash (options):

    • :title (String)

      Title for the pull request.

    • :body (String)

      Body for the pull request.

    • :state (String)

      State for the pull request.

Returns:

  • (Sawyer::Resource)

    Hash representing updated pull request.

See Also:



99
100
101
102
103
104
105
106
107
# File 'lib/octokit/client/pull_requests.rb', line 99

def update_pull_request(*args)
  arguments = Octokit::Arguments.new(args)
  repo   = arguments.shift
  number = arguments.shift
  title  = arguments.shift
  body   = arguments.shift
  state  = arguments.shift
  patch "repos/#{Repository.new repo}/pulls/#{number}", arguments.options
end

#update_pull_request_comment(repo, comment_id, body, options = {}) ⇒ Sawyer::Resource Also known as: update_pull_comment, update_review_comment

Update pull request comment

Examples:

@client.update_pull_request_comment("octokit/octokit.rb", 1903950, ":shipit:")

Parameters:

  • repo (String, Hash, Repository)

    A GitHub repository

  • comment_id (Integer)

    Id of the comment to update

  • body (String)

    Updated comment content

Returns:

  • (Sawyer::Resource)

    Hash representing the updated comment

See Also:



245
246
247
248
# File 'lib/octokit/client/pull_requests.rb', line 245

def update_pull_request_comment(repo, comment_id, body, options = {})
  options.merge! :body => body
  patch("repos/#{Repository.new repo}/pulls/comments/#{comment_id}", options)
end