From 678aa7487a8af738bdfb6e024ccc7a9eb4d9d719 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Fri, 5 Mar 2021 07:28:53 -0500 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index beb506ff..7b6d8f66 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,10 +15,25 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Run changed-files + - name: Run changed-files with defaults id: changed-files uses: ./ - name: Show output run: | echo "${{ toJSON(steps.changed-files.outputs) }}" - + - name: Run changed-files with comma separator + id: changed-files-comma + uses: ./ + with: + separator: "," + - name: Show output + run: | + echo "${{ toJSON(steps.changed-files-comma.outputs) }}" + - name: Run changed-files with pipe + id: changed-files-pipe + uses: ./ + with: + separator: "|" + - name: Show output + run: | + echo "${{ toJSON(steps.changed-files-pipe.outputs) }}"