difftreelog
Update ci-master.yml
in: master
1 file changed
.github/workflows/ci-master.ymldiffbeforeafterboth1# Workflow which controls starts nested workflows.2name: master34# Triger: PR at 'master' branch with following types of events.5on:6 pull_request:7 branches: [ 'master' ]8 types: [ opened, reopened, synchronize, ready_for_review ]910#Concurency group for control execution queue over github runners.11concurrency:12 group: ${{ github.workflow }}-${{ github.head_ref }}13 cancel-in-progress: true1415# List of a jobs included into Workflow.16jobs:1718 unit-test:19 uses: ./.github/workflows/unit-test_v2.yml2021 node-only-update:22 uses: ./.github/workflows/node-only-update_v2.yml2324 forkless:25 uses: ./.github/workflows/forkless.yml2627 canary:28 uses: ./.github/workflows/canary.yml29 secrets: inherit # pass all secrets from initial workflow to nested3031 xcm:32 uses: ./.github/workflows/xcm.yml33 secrets: inherit # pass all secrets from initial workflow to nested3435 codestyle:36 uses: ./.github/workflows/codestyle_v2.yml1# 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 unit-test:20 uses: ./.github/workflows/unit-test_v2.yml2122 node-only-update:23 uses: ./.github/workflows/node-only-update_v2.yml2425 forkless:26 uses: ./.github/workflows/forkless.yml2728 canary:29 uses: ./.github/workflows/canary.yml30 secrets: inherit # pass all secrets from initial workflow to nested3132 xcm:33 uses: ./.github/workflows/xcm.yml34 secrets: inherit # pass all secrets from initial workflow to nested3536 codestyle:37 uses: ./.github/workflows/codestyle_v2.yml