From 2be4e959e9ad725183f040908169f791b2fdbf3e Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Mon, 28 Feb 2022 07:23:11 -0800 Subject: [PATCH] add root flag --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index da3080b..e18c2e5 100644 --- a/action.yml +++ b/action.yml @@ -12,6 +12,10 @@ inputs: default: "false" description: "Index content" required: false + root: + default: "." + description: "Root of Repository" + required: false description: simple GitHub action to parse Markdown Links into a .yaml file for Hugo branding: icon: anchor @@ -23,3 +27,4 @@ runs: - "-input=${{ inputs.input }}" - "-output=${{ inputs.output }}" - "-index=${{ inputs.index }}" + - "-root=${{ inputs.root }}"