Skip to content

Commit

Permalink
feat: support no_proxy environment variable (peter-evans#1205)
Browse files Browse the repository at this point in the history
Co-authored-by: TGANSTE <till.ganster@mercedes-benz.com>
  • Loading branch information
2 people authored and aleksandrychev committed Mar 4, 2024
1 parent ff3cc03 commit af3cced
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/octokit-client.ts
Expand Up @@ -11,13 +11,23 @@ export const Octokit = Core.plugin(
autoProxyAgent
)

// Octokit plugin to support the https_proxy environment variable
// Octokit plugin to support the https_proxy and no_proxy environment variable
function autoProxyAgent(octokit: Core) {
const proxy = process.env.https_proxy || process.env.HTTPS_PROXY

const noProxy = process.env.no_proxy || process.env.NO_PROXY
let noProxyArray: string[] = []
if (noProxy) {
noProxyArray = noProxy.split(',')
}

if (!proxy) return

const agent = new HttpsProxyAgent(proxy)
octokit.hook.before('request', options => {
if (noProxyArray.includes(options.request.hostname)) {
return
}
options.request.agent = agent
})
}

0 comments on commit af3cced

Please sign in to comment.