123name: develop456on:7 pull_request:8 branches: [ 'develop' ]9 types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]101112concurrency:13 group: ${{ github.workflow }}-${{ github.head_ref }}14 cancel-in-progress: true151617jobs:1819 yarn-dev:20 if: github.event.pull_request.draft == false 21 uses: ./.github/workflows/yarn-dev.yml2223 unit-test:24 if: github.event.pull_request.draft == false 25 uses: ./.github/workflows/unit-test.yml2627 canary:28 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }} 29 uses: ./.github/workflows/canary.yml30 secrets: inherit 3132 xcm:33 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }} 34 uses: ./.github/workflows/xcm.yml35 secrets: inherit 36 37 forkless:38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} 39 uses: ./.github/workflows/forkless.yml40 41 node-only-update:42 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'node-only-update')) }} 43 uses: ./.github/workflows/node-only-update.yml44 45 46 47 4849 codestyle:50 if: github.event.pull_request.draft == false 51 uses: ./.github/workflows/codestyle.yml