mirror of
https://github.com/actions/checkout.git
synced 2024-11-14 16:18:06 +00:00
Compare commits
2 Commits
b5fbd78e07
...
f1ce9c9e0d
Author | SHA1 | Date | |
---|---|---|---|
|
f1ce9c9e0d | ||
|
f329befabb |
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -1271,7 +1271,9 @@ function getSource(settings) {
|
||||
}
|
||||
// Fetch
|
||||
core.startGroup('Fetching the repository');
|
||||
const fetchOptions = {};
|
||||
const fetchOptions = {
|
||||
showProgress: settings.showProgress
|
||||
};
|
||||
if (settings.filter) {
|
||||
fetchOptions.filter = settings.filter;
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ export interface IGitCommandManager {
|
||||
filter?: string
|
||||
fetchDepth?: number
|
||||
fetchTags?: boolean
|
||||
showProgress?: boolean
|
||||
showProgress: boolean
|
||||
}
|
||||
): Promise<void>
|
||||
getDefaultBranch(repositoryUrl: string): Promise<string>
|
||||
@ -257,7 +257,7 @@ class GitCommandManager {
|
||||
filter?: string
|
||||
fetchDepth?: number
|
||||
fetchTags?: boolean
|
||||
showProgress?: boolean
|
||||
showProgress: boolean
|
||||
}
|
||||
): Promise<void> {
|
||||
const args = ['-c', 'protocol.version=2', 'fetch']
|
||||
|
@ -160,8 +160,10 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
|
||||
filter?: string
|
||||
fetchDepth?: number
|
||||
fetchTags?: boolean
|
||||
showProgress?: boolean
|
||||
} = {}
|
||||
showProgress: boolean
|
||||
} = {
|
||||
showProgress: settings.showProgress
|
||||
}
|
||||
|
||||
if (settings.filter) {
|
||||
fetchOptions.filter = settings.filter
|
||||
|
Loading…
Reference in New Issue
Block a user