From d13ac1942fb3c1d7d32017915bb082cebe8a272a Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 23 Dec 2023 04:52:19 -0700 Subject: [PATCH] Update README.md --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index aaf012de..35e01cfd 100644 --- a/README.md +++ b/README.md @@ -233,13 +233,10 @@ jobs: - name: Get changed files id: changed-files uses: tj-actions/changed-files@v40 - with: - safe_output: false # true by default, set to false because we are using an environment variable to store the output and avoid command injection. - name: List all changed files env: - ALL_CHANGED_FILES: |- - ${{ steps.changed-files.outputs.all_changed_files }} + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | for file in "$ALL_CHANGED_FILES"; do echo "$file was changed" @@ -279,15 +276,11 @@ jobs: - name: Get changed files id: changed-files uses: tj-actions/changed-files@v40 - with: - safe_output: false # true by default, set to false because we are using an environment variable to store the output and avoid command injection. - # NOTE: `since_last_remote_commit: true` is implied by default and falls back to the previous local commit. - name: List all changed files env: - ALL_CHANGED_FILES: |- - ${{ steps.changed-files.outputs.all_changed_files }} + ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | for file in "$ALL_CHANGED_FILES"; do echo "$file was changed"