mirror of
https://code.forgejo.org/actions/checkout.git
synced 2025-07-17 15:12:41 +00:00
format
This commit is contained in:
parent
220570c515
commit
2449f8bb0b
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ export interface IGitSourceSettings {
|
||||||
*/
|
*/
|
||||||
shallowSince: string
|
shallowSince: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch tags, even if fetchDepth > 0 (default: false)
|
* Fetch tags, even if fetchDepth > 0 (default: false)
|
||||||
*/
|
*/
|
||||||
fetchTags: boolean
|
fetchTags: boolean
|
||||||
|
|
|
@ -116,7 +116,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
||||||
}
|
}
|
||||||
result.shallowSince = core.getInput('shallow-since')
|
result.shallowSince = core.getInput('shallow-since')
|
||||||
core.debug(`shallow since = ${result.shallowSince}`)
|
core.debug(`shallow since = ${result.shallowSince}`)
|
||||||
|
|
||||||
// Fetch tags
|
// Fetch tags
|
||||||
result.fetchTags =
|
result.fetchTags =
|
||||||
(core.getInput('fetch-tags') || 'false').toUpperCase() === 'TRUE'
|
(core.getInput('fetch-tags') || 'false').toUpperCase() === 'TRUE'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue