123name: master456on:7 pull_request:8 branches: [ 'master' ]9 types: [ opened, reopened, synchronize, ready_for_review ]101112concurrency:13 group: ${{ github.workflow }}-${{ github.head_ref }}14 cancel-in-progress: true151617jobs:1819 yarn-dev:20 uses: ./.github/workflows/yarn-dev.yml21 secrets: inherit 2223 unit-test:24 uses: ./.github/workflows/unit-test.yml25 secrets: inherit 2627 28 29 3031 xcm:32 uses: ./.github/workflows/xcm.yml33 secrets: inherit 34 35 collator-selection:36 uses: ./.github/workflows/collator-selection.yml37 secrets: inherit 3839 forkless-update-data:40 uses: ./.github/workflows/forkless-update-data.yml41 secrets: inherit 4243 forkless-update-no-data:44 uses: ./.github/workflows/forkless-update-nodata.yml45 secrets: inherit 4647 try-runtime:48 uses: ./.github/workflows/try-runtime.yml49 secrets: inherit 5051 node-only-update:52 uses: ./.github/workflows/node-only-update.yml53 secrets: inherit5455 governance:56 uses: ./.github/workflows/governance.yml57 secrets: inherit5859 codestyle:60 uses: ./.github/workflows/codestyle.yml61 secrets: inherit6263 polkadot-types:64 uses: ./.github/workflows/polkadot-types.yml656667