mirror of
https://github.com/actions/checkout.git
synced 2026-02-13 23:19:45 +08:00
Default branch checkout option
This commit is contained in:
@@ -78,10 +78,11 @@ export async function getInputs(): Promise<IGitSourceSettings> {
|
||||
core.debug(`ref = '${result.ref}'`)
|
||||
core.debug(`commit = '${result.commit}'`)
|
||||
|
||||
// Default ref on error
|
||||
result.defaultRefOnError =
|
||||
(core.getInput('default-ref-on-error') || 'true').toUpperCase() === 'TRUE'
|
||||
core.debug(`default-ref-on-error = '${result.defaultRefOnError}'`)
|
||||
// Default branch checkout
|
||||
result.defaultBranchCheckout =
|
||||
(core.getInput('default-branch-checkout') || 'true').toUpperCase() ===
|
||||
'TRUE'
|
||||
core.debug(`default-branch-checkout = '${result.defaultBranchCheckout}'`)
|
||||
|
||||
// Clean
|
||||
result.clean = (core.getInput('clean') || 'true').toUpperCase() === 'TRUE'
|
||||
|
||||
Reference in New Issue
Block a user