-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow Bypass list to be passed into the proxy #58
Conversation
actions/setup-dotnet#
Hi @ZEisinger , |
@bozturkMSFT Actions follow a consistent pattern for declaring and consuming proxy settings which includes the ability to specify when to skip the proxy ( The action currently consumes these scripts from a local copy, but checks the feed for updates in CI tests. I know there is typically some lead time on changes to these script so I opened the PR here before my PR is ready in setup-dotnet. If needed, I can disable the CI test temporarily until this change is available at www.dot.net. |
Required for actions/setup-dotnet#71. Agents can set proxy settings for their runs which include addresses which should not go through the proxy. This script doesn't allow that value to be specified for windows. In the shell script this is handled by wget and curl both honoring the environment variables
https_proxy
andno_proxy
.