From ff17951ef9eced130a5169011f100eec9424a280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Linhart?= Date: Thu, 29 Sep 2022 12:58:42 +0200 Subject: [PATCH] Set `list-files` input parameter as not required There is a default value provided in the action metadata file so the input parameter should be specified as not required. Leaving it marked as required causes workflow validation errors when leaving out this parameter. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index dc515281..37ff9c52 100644 --- a/action.yml +++ b/action.yml @@ -34,7 +34,7 @@ inputs: If needed it uses single or double quotes to wrap filename with unsafe characters. 'escape'- Space delimited list usable as command line argument list in linux shell. Backslash escapes every potentially unsafe character. - required: true + required: false default: none initial-fetch-depth: description: |