3
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-04-24 12:25:34 +00:00

update action.yml and readme

This commit is contained in:
alexanderkranga 2024-02-19 18:24:39 +02:00
parent 5bbdf118df
commit 47b9382799
3 changed files with 9 additions and 10 deletions

3
dist/index.js vendored
View file

@ -1741,7 +1741,8 @@ function getInputs() {
core.debug(`commit = '${result.commit}'`);
// Default branch checkout
result.defaultBranchCheckout =
(core.getInput('default-branch-checkout') || 'true').toUpperCase() === 'TRUE';
(core.getInput('default-branch-checkout') || 'true').toUpperCase() ===
'TRUE';
core.debug(`default-branch-checkout = '${result.defaultBranchCheckout}'`);
// Clean
result.clean = (core.getInput('clean') || 'true').toUpperCase() === 'TRUE';