mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-16 13:08:28 +00:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
module.exports = getFirstPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getFirstPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'first', headers)
|
|
}
|