From 5c03d2895c042cab19b04adb2d41aeb73adbd96e Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 22 Aug 2022 14:24:59 -0600 Subject: [PATCH 1/3] chore(deps): Update tj-actions/glob to v11.1 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0e6a5f24c49..5a4cda09341 100644 --- a/action.yml +++ b/action.yml @@ -203,7 +203,7 @@ runs: INPUT_PATH: ${{ inputs.path }} INPUT_USE_FORK_POINT: ${{ inputs.use_fork_point }} - name: Glob match - uses: tj-actions/glob@v10 + uses: tj-actions/glob@v11.1 id: glob with: files: ${{ inputs.files }} From 22920e8d5dab42d5b5f626ae5dd475b4e5a89835 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 22 Aug 2022 14:47:29 -0600 Subject: [PATCH 2/3] Update test.yml --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 402127b39dc..3a554262bc4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -302,21 +302,21 @@ jobs: echo '${{ toJSON(steps.changed-files-dir-names.outputs) }}' shell: bash - - name: Run changed-files since 2022-08-19 + - name: Run changed-files since 5 minute ago id: changed-files-since uses: ./ with: - since: "2022-08-19" + since: "5 minute ago" - name: Show output run: | echo '${{ toJSON(steps.changed-files-since.outputs) }}' shell: bash - - name: Run changed-files until 2022-08-20 + - name: Run changed-files until 1 minute ago id: changed-files-until uses: ./ with: - until: "2022-08-21" + until: "1 minute ago" - name: Show output run: | echo '${{ toJSON(steps.changed-files-until.outputs) }}' From 4ae6f80c0f3c44d2dddcc5590b448160df1b2697 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Mon, 22 Aug 2022 14:54:51 -0600 Subject: [PATCH 3/3] Update test.yml --- .github/workflows/test.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a554262bc4..51ef29a2c21 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -302,21 +302,23 @@ jobs: echo '${{ toJSON(steps.changed-files-dir-names.outputs) }}' shell: bash - - name: Run changed-files since 5 minute ago + - name: Run changed-files since 2022-08-19 id: changed-files-since uses: ./ + continue-on-error: true with: - since: "5 minute ago" + since: "2022-08-19" - name: Show output run: | echo '${{ toJSON(steps.changed-files-since.outputs) }}' shell: bash - - name: Run changed-files until 1 minute ago + - name: Run changed-files until 2022-08-20 id: changed-files-until uses: ./ + continue-on-error: true with: - until: "1 minute ago" + until: "2022-08-20" - name: Show output run: | echo '${{ toJSON(steps.changed-files-until.outputs) }}'