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, 'CI-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, 'CI-xcm')) }} 34 uses: ./.github/workflows/xcm.yml35 secrets: inherit 36 37 collator-selection:38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-collator-selection')) }} 39 uses: ./.github/workflows/collator-selection.yml40 41 forkless:42 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-forkless')) }} 43 uses: ./.github/workflows/forkless.yml44 45 node-only-update:46 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-node-only-update')) }} 47 uses: ./.github/workflows/node-only-update.yml48 49 50 51 5253 codestyle:54 if: github.event.pull_request.draft == false 55 uses: ./.github/workflows/codestyle.yml