From e4fcd7595dbb91827c1d2742c3f1dfa59ff7f6b6 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 5 Apr 2020 02:23:38 +0200 Subject: [PATCH] fix: add quotes for potentialy spaced values --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 9099edb..70f0518 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: image: "docker://botsudo/action-fork-sync:v1.0.4" args: - ${{ inputs.clone-depth }} - - ${{ inputs.branches }} - - ${{ inputs.source-url }} - - ${{ inputs.fork-url }} + - "${{ inputs.branches }}" + - "${{ inputs.source-url }}" + - "${{ inputs.fork-url }}" - ${{ inputs.dry-run }}