mirror of
https://github.com/actions/checkout.git
synced 2024-04-27 16:57:09 +08:00
Compare commits
3 Commits
a65c1f84e9
...
eb237700fe
Author | SHA1 | Date | |
---|---|---|---|
|
eb237700fe | ||
|
9acec543f2 | ||
|
e0908c08dc |
@ -64,6 +64,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/
|
||||
|
||||
# The user to use when connecting to the remote SSH host. By default 'git' is
|
||||
# used.
|
||||
# Default: git
|
||||
ssh-user: ''
|
||||
|
||||
# Whether to configure the token or SSH key with the local git config
|
||||
|
@ -48,6 +48,7 @@ inputs:
|
||||
ssh-user:
|
||||
description: >
|
||||
The user to use when connecting to the remote SSH host. By default 'git' is used.
|
||||
default: git
|
||||
persist-credentials:
|
||||
description: 'Whether to configure the token or SSH key with the local git config'
|
||||
default: true
|
||||
|
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -2401,7 +2401,7 @@ function getFetchUrl(settings) {
|
||||
const encodedOwner = encodeURIComponent(settings.repositoryOwner);
|
||||
const encodedName = encodeURIComponent(settings.repositoryName);
|
||||
if (settings.sshKey) {
|
||||
let user = settings.sshUser.length > 0 ? settings.sshUser : 'git';
|
||||
const user = settings.sshUser.length > 0 ? settings.sshUser : 'git';
|
||||
return `${user}@${serviceUrl.hostname}:${encodedOwner}/${encodedName}.git`;
|
||||
}
|
||||
// "origin" is SCHEME://HOSTNAME[:PORT]
|
||||
|
@ -12,7 +12,7 @@ export function getFetchUrl(settings: IGitSourceSettings): string {
|
||||
const encodedOwner = encodeURIComponent(settings.repositoryOwner)
|
||||
const encodedName = encodeURIComponent(settings.repositoryName)
|
||||
if (settings.sshKey) {
|
||||
let user = settings.sshUser.length > 0 ? settings.sshUser : 'git'
|
||||
const user = settings.sshUser.length > 0 ? settings.sshUser : 'git'
|
||||
return `${user}@${serviceUrl.hostname}:${encodedOwner}/${encodedName}.git`
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user