Skip to content

Commit

Permalink
9
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Nov 14, 2023
1 parent a26d196 commit a5d6ae5
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/dispatch_all_jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,19 @@ jobs:
workflow: [lint, document, pkgdown]

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

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


0 comments on commit a5d6ae5

Please sign in to comment.