1name: 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 if: ${{ contains( github.event.pull_request.labels.*.name, 'forkless') }}22 uses: ./.github/workflows/forkless.yml2324 canary:25 if: ${{ contains( github.event.pull_request.labels.*.name, 'canary') }}26 uses: ./.github/workflows/canary.yml27 secrets: inherit 2829 xcm:30 if: ${{ contains( github.event.pull_request.labels.*.name, 'xcm') }}31 uses: ./.github/workflows/xcm.yml32 secrets: inherit 3334 codestyle:35 uses: ./.github/workflows/codestyle_v2.yml