1
0
mirror of https://github.com/actions/checkout.git synced 2026-04-16 19:15:38 +02:00
Files
actions-checkout/src/git-source-settings.ts
T
2020-03-02 11:33:30 -05:00

13 lines
250 B
TypeScript

export interface IGitSourceSettings {
repositoryPath: string
repositoryOwner: string
repositoryName: string
ref: string
commit: string
clean: boolean
fetchDepth: number
lfs: boolean
authToken: string
persistCredentials: boolean
}