1# Intermediate Nested Workflow for calling subworkflows as a parallel tasks.23# name: Nesting Forkless45# on:6# workflow_call:78# jobs:9 10# forkless-update-data:11# name: with data12# uses: ./.github/workflows/forkless-update-data.yml13# secrets: inherit # pass all secrets from initial workflow to nested 1415# forkless-update-no-data:16# name: no data17# uses: ./.github/workflows/forkless-update-nodata.yml18# secrets: inherit # pass all secrets from initial workflow to nested 1920# try-runtime:21# name: try-runtime22# uses: ./.github/workflows/try-runtime.yml23# secrets: inherit # pass all secrets from initial workflow to nested difftreelog
source
.github/workflows/forkless.yml681 Bsourcehistory