difftreelog
Update ci-develop.yml
in: master
1 file changed
.github/workflows/ci-develop.ymldiffbeforeafterboth1name: develop23on:4 pull_request:5 branches: [ 'develop' ]6 types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]78concurrency:9 group: ${{ github.workflow }}-${{ github.head_ref }}10 cancel-in-progress: true1112jobs:1314 yarn-test-dev:15 if: github.event.pull_request.draft == false16 uses: ./.github/workflows/dev-build-tests_v2.yml171819 unit-test:20 if: github.event.pull_request.draft == false21 uses: ./.github/workflows/unit-test_v2.yml2223 canary:24 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }}25 uses: ./.github/workflows/canary.yml26 secrets: inherit # pass all secrets2728 xcm:29 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }}30 uses: ./.github/workflows/xcm.yml31 secrets: inherit # pass all secrets32 33 forkless:34 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }}35 uses: ./.github/workflows/forkless.yml36 37 node-only-update:38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }}39 uses: ./.github/workflows/node-only-update_v2.yml40 41 parallel_and_sequential_tests:42 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'para')) }}43 uses: ./.github/workflows/node-only-update_v3.yml4445 codestyle:46 if: github.event.pull_request.draft == false47 uses: ./.github/workflows/codestyle_v2.yml48 49 yarn_eslint:50 if: github.event.pull_request.draft == false51 uses: ./.github/workflows/test_codestyle_v2.yml1# Workflow which controls starts nested workflows.2name: develop34# Triger: PR at 'develop' branch with following types of events.5on:6 pull_request:7 branches: [ 'develop' ]8 types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]910#Concurency group for control execution queue over github runners.11concurrency:12 group: ${{ github.workflow }}-${{ github.head_ref }}13 cancel-in-progress: true1415# List of a jobs included into Workflow.16jobs:1718 yarn-test-dev:19 if: github.event.pull_request.draft == false20 uses: ./.github/workflows/dev-build-tests_v2.yml212223 unit-test:24 if: github.event.pull_request.draft == false25 uses: ./.github/workflows/unit-test_v2.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 # pass all secrets3132 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 # pass all secrets36 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, 'forkless')) }}43 uses: ./.github/workflows/node-only-update_v2.yml44 45 parallel_and_sequential_tests:46 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'para')) }}47 uses: ./.github/workflows/node-only-update_v3.yml4849 codestyle:50 if: github.event.pull_request.draft == false51 uses: ./.github/workflows/codestyle_v2.yml52 53 yarn_eslint:54 if: github.event.pull_request.draft == false55 uses: ./.github/workflows/test_codestyle_v2.yml