1
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-04-28 14:12:46 +02:00

add config option to set github host

This commit is contained in:
GABeech 2022-06-14 22:12:53 -04:00
parent 2541b1294d
commit 2202a283a7
3 changed files with 13 additions and 3 deletions

View file

@ -83,4 +83,10 @@ export interface IGitSourceSettings {
* Indicates whether to add repositoryPath as safe.directory in git global config
*/
setSafeDirectory: boolean
/**
* Set a host to override the automatic detection. Useful when you need to clone
* from cloud when running an action on an on prem server
*/
setHost: string | undefined
}