From 70e85af3ef88cc0d3aa46aaac15f91e3c78b7651 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Tue, 14 May 2024 23:50:26 +0100 Subject: [PATCH] chore: workaround for changed files check due to forcce push see jitterbit/get-changed-files#54, jitterbit/get-changed-files#4, jitterbit/get-changed-files#7 and jitterbit/get-changed-files#11 --- .github/workflows/pull-request-checks.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull-request-checks.yaml b/.github/workflows/pull-request-checks.yaml index 800368824be90..0ad9ec1a294b6 100644 --- a/.github/workflows/pull-request-checks.yaml +++ b/.github/workflows/pull-request-checks.yaml @@ -21,6 +21,7 @@ jobs: - uses: jitterbit/get-changed-files@v1 id: changed_files name: Get changed files + continue-on-error: true - id: md_changed_files name: Spellcheck Markdown files run: |- @@ -93,6 +94,7 @@ jobs: uses: jitterbit/get-changed-files@v1 with: format: 'space-delimited' + continue-on-error: true - name: Lint changed files run: npx eslint --quiet ${{ steps.changed_files_space.outputs.added_modified }} ${{ steps.changed_files_space.outputs.renamed }} - name: Get Changed Files (comma-separated) @@ -100,6 +102,7 @@ jobs: uses: jitterbit/get-changed-files@v1 with: format: 'csv' + continue-on-error: true # NOTE: These steps are kept in this workflow to avoid re-rerunning the rest of the lint job # in the Components Checks workflow - name: Check component keys