Skip to content

Commit a1b383f

Browse files
committed
fix: Fix default values used incorrectly.
1 parent bb271fe commit a1b383f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ inputs:
4040
required: false
4141
default: ""
4242
SCRIPT_BEFORE_REQUIRED:
43-
description: "If true, the action will fail if the before script fails"
43+
description: "If not an empty string, the action will fail if the before script fails. Note: The string 'false' will be treated as true"
4444
required: false
45-
default: "false"
45+
default: ""
4646
SCRIPT_AFTER:
4747
description: "Script to run on host machine after rsync"
4848
required: false
4949
default: ""
5050
SCRIPT_AFTER_REQUIRED:
51-
description: "If true, the action will fail if the after script fails"
51+
description: "If not an empty string, the action will fail if the after script fails. Note: The string 'false' will be treated as true"
5252
required: false
53-
default: "false"
53+
default: ""
5454
outputs:
5555
status:
5656
description: "Status"

0 commit comments

Comments
 (0)