Skip to content

Commit

Permalink
8
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Nov 14, 2023
1 parent 7270c51 commit a26d196
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/dispatch_all_jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,24 @@ jobs:
ddf_workflows:
strategy:
matrix:
workflow: [./.github/workflows/lint.yaml, ./.github/workflows/document.yaml, ./.github/workflows/pkgdown.yaml]
uses: ${{ matrix.workflow }}
with:
event_name: ${{ inputs.event_name }}
run_id: ${{ inputs.run_id }}
secrets: inherit
workflow: [lint, document, pkgdown]

steps:
if: ${{ matrix.workflow == 'lint'}}
uses: ./.github/workflows/lint.yaml
secrets: inherit

steps:
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


0 comments on commit a26d196

Please sign in to comment.