You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-open-pr Task should be able to inject CA certificates for private git servers or allow insecure connections via ... , context = ssl._create_unverified_context()
Actual Behavior
You cannot connect to private git servers with private CA-signed certificates.
Steps to Reproduce the Problem
Try to connect to a private git server by specifying it in the GITHUB_HOST_URL parameter
Observe "certificate not trusted error" in Task output
Additional Info
You can work around this but customizing the Task and adding import ssl and then adding this to line 131: ... , context = ssl._create_unverified_context()
The text was updated successfully, but these errors were encountered:
Expected Behavior
github-open-pr Task should be able to inject CA certificates for private git servers or allow insecure connections via
... , context = ssl._create_unverified_context()
Actual Behavior
You cannot connect to private git servers with private CA-signed certificates.
Steps to Reproduce the Problem
Additional Info
You can work around this but customizing the Task and adding
import ssl
and then adding this to line 131:... , context = ssl._create_unverified_context()
The text was updated successfully, but these errors were encountered: