diff --git a/.github/workflows/check-migrations.yml b/.github/workflows/check-migrations.yml index 5c6eda3633..276029593e 100644 --- a/.github/workflows/check-migrations.yml +++ b/.github/workflows/check-migrations.yml @@ -2,9 +2,9 @@ name: Check Migrations on: push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] + branches: ["main"] + pull_request: + branches: ["main"] workflow_dispatch: jobs: @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest outputs: runtime: ${{ steps.runtime.outputs.runtime }} + name: Extract tasks from matrix steps: - uses: actions/checkout@v2 - id: runtime - name: Extract tasks from matrix run: | # Filter out runtimes that don't have a URI TASKS=$(jq '[.[] | select(.uri != null)]' .github/workflows/runtimes-matrix.json) @@ -29,7 +29,7 @@ jobs: echo "runtime=$TASKS" >> $GITHUB_OUTPUT check-migrations: - needs: [ runtime-matrix ] + needs: [runtime-matrix] continue-on-error: true runs-on: ubuntu-latest strategy: