pull = create_pull_request('octokit/octokit.rb', 'feature-branch')Configure pull request attributes:
pull = create_pull_request('octokit/octokit.rb', 'feature-branch',
base: 'master', title: 'Pull Request title', body: 'Pull Request body')client.update_issue(pull.base.repo.full_name, pull.number, assignee: 'pengwynn')client.close_pull_request(pull.base.repo.full_name, pull.number)