From 98ebed023fd4044b48eaef76f88429fccac380ec Mon Sep 17 00:00:00 2001 From: simmac Date: Thu, 30 Apr 2020 01:56:50 +0200 Subject: [PATCH] Small fixes: renamed defaults to default according to github-doc: https://help.github.com/en/actions/building-actions/metadata-syntax-for-github-actions#inputs --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 89cbde7..49d3f30 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,7 @@ inputs: required: true local-dir: description: 'The local folder to copy, defaults to root project folder' - defaults: ./ + default: ./ required: false ignore-github: description: 'Whether the .github directory should be excluded from synchronization' @@ -21,7 +21,7 @@ inputs: required: false git-ftp-args: description: 'Passes through options into git-ftp' - defaults: + default: required: false runs: using: 'docker'