Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
liamaharon committed Nov 21, 2023
1 parent e0e85ff commit d820719
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ name: Check Migrations

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
runtime-matrix:
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)
Expand All @@ -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:
Expand Down

0 comments on commit d820719

Please sign in to comment.