From 7b0c3d779063356e4f589c7cb4f0bbd6c3c0a95c Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 7 Sep 2022 09:43:10 -0600 Subject: [PATCH] chore: set defaults for until and since inputs --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index 136f59fc6a0..6ec5f18c0a5 100644 --- a/action.yml +++ b/action.yml @@ -57,9 +57,11 @@ inputs: since: description: "Get changed files for commits whose timestamp is older than the given time" required: false + default: "" until: description: "Get changed files for commits whose timestamp is earlier than the given time" required: false + default: "" path: description: "Specify a relative path under $GITHUB_WORKSPACE to locate the repository" required: false