git.delta.rocks / unique-network / refs/commits / 612eec975ef7

difftreelog

source

.github/workflows/forkless.yml649 Bsourcehistory
1# Intermediate Nested Workflow for calling subworkflows as a parallel tasks.23name: Nesting Forkless45on:6  workflow_call:78jobs: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