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, document, pkgdown]
steps:
if: ${{ matrix.workflow == 'lint'}}
uses: ./.github/workflows/lint.yaml
secrets: inherit
steps:

Check failure on line 22 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 22
if: ${{ matrix.workflow == 'document'}}
uses: ./.github/workflows/document.yaml
secrets: inherit
steps:
if: ${{ matrix.workflow == 'pkgdown'}}
uses: ./.github/workflows/pkgdown.yaml
with:
event_name: ${{ inputs.event_name }}
run_id: ${{ inputs.run_id }}
secrets: inherit