From bb271fe4c69eeeacb986a38cdb3347104143c61f Mon Sep 17 00:00:00 2001 From: skyArony <1450872874@qq.com> Date: Fri, 2 Feb 2024 16:31:41 +0800 Subject: [PATCH] fix: added the missing declarations #177 --- action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/action.yml b/action.yml index 298442f..86df57c 100644 --- a/action.yml +++ b/action.yml @@ -39,10 +39,18 @@ inputs: description: "Script to run on host machine before rsync" required: false default: "" + SCRIPT_BEFORE_REQUIRED: + description: "If true, the action will fail if the before script fails" + required: false + default: "false" 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" + required: false + default: "false" outputs: status: description: "Status"