For example, this pull_request_patches method calls Octokit::Client#pull_request_files inside.
https://github.com/packsaddle/ruby-saddler-reporter-github/blob/master/lib/saddler/reporter/github/client.rb#L68
Octokit::Client#pull_request_files and many other methods use paginate, that manages a pagination depending on Octokit.auto_paginate.
https://github.com/octokit/octokit.rb#pagination
So you need Octokit.auto_paginate = true (in the code first) or setting env var OCTOKIT_AUTO_PAGINATE=true (should be documented as users set this according their preference).
For example, this
pull_request_patchesmethod callsOctokit::Client#pull_request_filesinside.https://github.com/packsaddle/ruby-saddler-reporter-github/blob/master/lib/saddler/reporter/github/client.rb#L68
Octokit::Client#pull_request_filesand many other methods usepaginate, that manages a pagination depending onOctokit.auto_paginate.https://github.com/octokit/octokit.rb#pagination
So you need
Octokit.auto_paginate = true(in the code first) or setting env varOCTOKIT_AUTO_PAGINATE=true(should be documented as users set this according their preference).