difftreelog
Update ci-master.yml
in: master
1 file changed
.github/workflows/ci-master.ymldiffbeforeafterboth1name: master23on:4 pull_request:5 branches: [ 'master' ]6 types: [ opened, reopened, synchronize, ready_for_review ]78concurrency:9 group: ${{ github.workflow }}-${{ github.head_ref }}10 cancel-in-progress: true1112jobs:1314 unit-test:15 uses: ./.github/workflows/unit-test_v2.yml1617 node-only-update:18 uses: ./.github/workflows/node-only-update_v2.yml1920 forkless:21 uses: ./.github/workflows/forkless.yml2223 canary:24 uses: ./.github/workflows/canary.yml25 secrets: inherit # pass all secrets2627 xcm:28 uses: ./.github/workflows/xcm.yml29 secrets: inherit # pass all secrets3031 codestyle:32 uses: ./.github/workflows/codestyle_v2.yml1# 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 secrets3031 xcm:32 uses: ./.github/workflows/xcm.yml33 secrets: inherit # pass all secrets3435 codestyle:36 uses: ./.github/workflows/codestyle_v2.yml