mirror of
https://code.forgejo.org/actions/checkout.git
synced 2025-04-30 07:19:55 +02:00
Add a configurable SSH user
This commit is contained in:
parent
cd7d8d697e
commit
4fbc953ab8
5 changed files with 12 additions and 2 deletions
|
@ -143,6 +143,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
|||
result.sshKnownHosts = core.getInput('ssh-known-hosts')
|
||||
result.sshStrict =
|
||||
(core.getInput('ssh-strict') || 'true').toUpperCase() === 'TRUE'
|
||||
result.sshUser = core.getInput('ssh-user')
|
||||
|
||||
// Persist credentials
|
||||
result.persistCredentials =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue