mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-06 03:55:50 +00:00
Use server hostname for org-id-style SSH URLs
GitHub Enterprise Server can show a SSH URLs that includes organization ID, too: https://docs.github.com/en/enterprise-server@3.6/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities#about-ssh-urls-with-ssh-certificates
Follow-up: ec3a7ce113
🔗 https://github.com/actions/checkout/pull/621
This commit is contained in:
parent
8230315d06
commit
2427e94287
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class GitAuthHelper {
|
||||||
this.insteadOfValues.push(`git@${serverUrl.hostname}:`)
|
this.insteadOfValues.push(`git@${serverUrl.hostname}:`)
|
||||||
if (this.settings.workflowOrganizationId) {
|
if (this.settings.workflowOrganizationId) {
|
||||||
this.insteadOfValues.push(
|
this.insteadOfValues.push(
|
||||||
`org-${this.settings.workflowOrganizationId}@github.com:`
|
`org-${this.settings.workflowOrganizationId}@${serverUrl.hostname}:`
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue