2024-09-03 09:54:12 +02:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import {Octokit as OctokitCore} from '@octokit/core'
|
2020-07-16 10:57:13 +02:00
|
|
|
import {paginateRest} from '@octokit/plugin-paginate-rest'
|
|
|
|
import {restEndpointMethods} from '@octokit/plugin-rest-endpoint-methods'
|
2024-09-03 09:54:12 +02:00
|
|
|
import {throttling} from '@octokit/plugin-throttling'
|
2023-04-05 01:41:18 +02:00
|
|
|
import {getProxyForUrl} from 'proxy-from-env'
|
2024-11-04 12:47:07 +01:00
|
|
|
import {createFetch} from 'node-fetch-native/proxy'
|
2020-07-16 10:57:13 +02:00
|
|
|
export {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods'
|
2024-09-03 09:54:12 +02:00
|
|
|
// eslint-disable-next-line import/no-unresolved
|
2020-07-16 10:57:13 +02:00
|
|
|
export {OctokitOptions} from '@octokit/core/dist-types/types'
|
|
|
|
|
2024-09-03 09:54:12 +02:00
|
|
|
export const Octokit = OctokitCore.plugin(
|
2021-05-22 02:32:10 +02:00
|
|
|
paginateRest,
|
|
|
|
restEndpointMethods,
|
2024-09-03 09:54:12 +02:00
|
|
|
throttling,
|
2021-05-22 02:32:10 +02:00
|
|
|
autoProxyAgent
|
|
|
|
)
|
|
|
|
|
2024-09-03 09:54:12 +02:00
|
|
|
export const throttleOptions = {
|
|
|
|
onRateLimit: (retryAfter, options, _, retryCount) => {
|
|
|
|
core.debug(`Hit rate limit for request ${options.method} ${options.url}`)
|
|
|
|
// Retries twice for a total of three attempts
|
|
|
|
if (retryCount < 2) {
|
|
|
|
core.debug(`Retrying after ${retryAfter} seconds!`)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onSecondaryRateLimit: (retryAfter, options) => {
|
|
|
|
core.warning(
|
|
|
|
`Hit secondary rate limit for request ${options.method} ${options.url}`
|
|
|
|
)
|
|
|
|
core.warning(`Requests may be retried after ${retryAfter} seconds.`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:14:51 +02:00
|
|
|
// Octokit plugin to support the standard environment variables http_proxy, https_proxy and no_proxy
|
2024-09-03 09:54:12 +02:00
|
|
|
function autoProxyAgent(octokit: OctokitCore) {
|
2021-05-22 02:32:10 +02:00
|
|
|
octokit.hook.before('request', options => {
|
2023-04-05 01:41:18 +02:00
|
|
|
const proxy = getProxyForUrl(options.baseUrl)
|
|
|
|
if (proxy) {
|
2024-11-04 12:47:07 +01:00
|
|
|
options.request.fetch = createFetch(proxy)
|
2023-04-05 01:41:18 +02:00
|
|
|
}
|
2021-05-22 02:32:10 +02:00
|
|
|
})
|
|
|
|
}
|