Skip to content

Commit

Permalink
fix: Fix default values used incorrectly.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyArony committed Feb 18, 2024
1 parent bb271fe commit a1b383f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ inputs:
required: false
default: ""
SCRIPT_BEFORE_REQUIRED:
description: "If true, the action will fail if the before script fails"
description: "If not an empty string, the action will fail if the before script fails. Note: The string 'false' will be treated as true"
required: false
default: "false"
default: ""
SCRIPT_AFTER:
description: "Script to run on host machine after rsync"
required: false
default: ""
SCRIPT_AFTER_REQUIRED:
description: "If true, the action will fail if the after script fails"
description: "If not an empty string, the action will fail if the after script fails. Note: The string 'false' will be treated as true"
required: false
default: "false"
default: ""
outputs:
status:
description: "Status"
Expand Down

0 comments on commit a1b383f

Please sign in to comment.