Gitextractor not using ssh key for ssh url and instead using github key #8412
Replies: 5 comments
|
The issue you're encountering seems to be related to the configuration of the Here are a few things to check and consider:
Here's an example of how your configuration might look with the SSH key options: {
"plugin": "gitextractor",
"subtasks": null,
"options": {
"connectionId": 1,
"fullName": "<my-org>/carousel",
"name": "carousel",
"pluginName": "github",
"proxy": "",
"repoId": "github:GithubRepo:1:671243190",
"url": "ssh://git@github.com/<my-org>/carousel.git",
"privateKey": "your_base64_encoded_PEM_file",
"passphrase": "your_passphrase_if_any"
}
}By ensuring these configurations are correctly set, the To reply, just mention @dosu. Share context across your team and agents. Try Dosu. |
|
I have already added private key |
|
Please note i have also tried configuration where i have given the base64 encoded key in private key part, that failed as well. With following error |
|
resolved after changing to "pluginName": "gitextractor" from "pluginName": "github" |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi team i configured a blueprint with git repo ssh url. here is the plugin config
While git cloning the task is failing with following error
Why it is using github tokens when my private ssh key is added to ssh agent already
All reactions