mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-05-11 19:04:20 +00:00
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
module.exports = getNextPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getNextPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'next', headers)
|
|
}
|