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 3435 xnft:36 uses: ./.github/workflows/xnft.yml37 secrets: inherit 38 39 collator-selection:40 uses: ./.github/workflows/collator-selection.yml41 secrets: inherit 4243 forkless-update-data:44 uses: ./.github/workflows/forkless-update-data.yml45 secrets: inherit 4647 forkless-update-no-data:48 uses: ./.github/workflows/forkless-update-nodata.yml49 secrets: inherit 5051 try-runtime:52 uses: ./.github/workflows/try-runtime.yml53 secrets: inherit 5455 node-only-update:56 uses: ./.github/workflows/node-only-update.yml57 secrets: inherit5859 governance:60 uses: ./.github/workflows/governance.yml61 secrets: inherit6263 codestyle:64 uses: ./.github/workflows/codestyle.yml65 secrets: inherit6667 polkadot-types:68 uses: ./.github/workflows/polkadot-types.yml697071