Skip to content

Commit

Permalink
15
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Nov 14, 2023
1 parent dc0f4dc commit 5f6b1cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/all_jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ on:
workflow_call:
inputs:
jobs:
required: true
required: false
type: array
default: [document, lint, pkgdown]
default: ["document", "lint", "pkgdown"]
event_name:
required: true
type: string
Expand All @@ -15,15 +15,15 @@ on:
jobs:

document:
if: ${{ contains(inputs.jobs, 'document') }}
if: ${{ contains(inputs.jobs, "document") }}
uses: ./.github/workflows/document.yaml
secrets: inherit

lint:
if: ${{ contains(inputs.jobs, 'lint') }}
if: ${{ contains(inputs.jobs, "lint") }}
uses: ./.github/workflows/lint.yaml

pkgdown:
if: ${{ contains(inputs.jobs, 'pkgdown') }}
if: ${{ contains(inputs.jobs, "pkgdown") }}
uses: ./.github/workflows/pkgdown.yaml
secrets: inherit

0 comments on commit 5f6b1cf

Please sign in to comment.