1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master2# Workflow which controls starts nested workflows.3name: master45# Triger: PR at 'master' branch with following types of events.6on:7 pull_request:8 branches: [ 'master' ]9 types: [ opened, reopened, synchronize, ready_for_review ]1011#Concurency group for control execution queue over github runners.12concurrency:13 group: ${{ github.workflow }}-${{ github.head_ref }}14 cancel-in-progress: true1516# List of a jobs included into Workflow.17jobs:1819 yarn-dev:20 uses: ./.github/workflows/yarn-dev.yml2122 unit-test:23 uses: ./.github/workflows/unit-test.yml2425 node-only-update:26 uses: ./.github/workflows/node-only-update.yml2728 forkless:29 uses: ./.github/workflows/forkless.yml3031 # canary:32 # uses: ./.github/workflows/canary.yml33 # secrets: inherit # pass all secrets from initial workflow to nested3435 xcm:36 uses: ./.github/workflows/xcm.yml37 secrets: inherit # pass all secrets from initial workflow to nested3839 # testnet:40 # uses: ./.github/workflows/testnet-build.yml41 # secrets: inherit # pass all secrets from initial workflow to nested4243 codestyle:44 uses: ./.github/workflows/codestyle.ymldifftreelog
source
.github/workflows/ci-master.yml1.2 KiBsourcehistory