From b5d6e1f9097a8bea8571825a8d9a69c190888798 Mon Sep 17 00:00:00 2001 From: Cameron Nimmo <48329714+CNimmo16@users.noreply.github.com> Date: Thu, 13 Jul 2023 19:59:44 +0100 Subject: [PATCH] remove quotes --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 7a678f2..a3f5308 100644 --- a/action.yml +++ b/action.yml @@ -68,7 +68,7 @@ runs: shell: bash run: | FILES=$(${{ github.action_path }}/bin/list-only-changed ${{ inputs.allow-missing && '--allow-missing' }} --ignore=${{ inputs.ignore-paths }} --tests-directory=${{ inputs.tests-directory }} --changed-files=${{ steps.changes_since_successful_commit.outputs.all_changed_and_modified_files }} --separator=${{ inputs.separator }}) - echo "files='$FILES'" >> "$GITHUB_OUTPUT" + echo "files=$FILES" >> "$GITHUB_OUTPUT" - name: Run paratest on changed files if: ${{ !inputs.list-only }}