Skip to content
on:
workflow_call:
inputs:
event_name:
required: true
type: string
run_id:
required: true
type: string
jobs:
ddf_workflows:
strategy:
matrix:
workflow: [lint]
run_lint:
uses: ./.github/workflows/a.yaml
if: ${{ matrix.workflow == 'lint' }}
- uses: ./.github/workflows/document.yaml

Check failure on line 21 in .github/workflows/dispatch_all_jobs.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/dispatch_all_jobs.yaml

Invalid workflow file

You have an error in your yaml syntax on line 21
if: ${{ matrix.workflow == 'document' }}
- uses: ./.github/workflows/pkgdown.yaml
if: ${{ matrix.workflow == 'pkgdown' }}
with:
event_name: ${{ inputs.event_name }}
run_id: ${{ inputs.run_id }}