Skip to content

Workflow file for this run

on:
workflow_call:
inputs:
jobs:
required: false
type: array
default:
- document
- lint
- pkgdown
event_name:
required: true
type: string
run_id:
required: true
type: string
jobs:
document:
if: ${{ contains(inputs.jobs, "document") }}
uses: ./.github/workflows/document.yaml
secrets: inherit
lint:
if: ${{ contains(inputs.jobs, "lint") }}
uses: ./.github/workflows/lint.yaml
pkgdown:
if: ${{ contains(inputs.jobs, "pkgdown") }}
uses: ./.github/workflows/pkgdown.yaml
secrets: inherit