Skip to content

testing test-coverage #2

testing test-coverage

testing test-coverage #2

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

Check failure on line 20 in .github/workflows/workflow_dispatcher.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow_dispatcher.yaml

Invalid workflow file

You have an error in your yaml syntax on line 20
document:
if: ${{ contains(inputs.jobs, 'document') }}
uses: ./.github/workflows/document.yaml
secrets: inherit
pkgdown:
if: ${{ contains(inputs.jobs, 'pkgdown') }}
uses: ./.github/workflows/pkgdown.yaml
with:
event_name: ${{ inputs.event_name }}
run_id: ${{ inputs.run_id }}
secrets: inherit
readme:
if: ${{ contains(inputs.jobs, 'readme') }}
uses: ./.github/workflows/render-readme.yaml
secrets: inherit