difftreelog
Update ci-develop.yml
in: master
1 file changed
.github/workflows/ci-develop.ymldiffbeforeafterboth1# 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 == false # Conditional check for draft per job.20 uses: ./.github/workflows/dev-build-tests_v2.yml212223 unit-test:24 if: github.event.pull_request.draft == false # Conditional check for draft per job.25 uses: ./.github/workflows/unit-test_v2.yml2627 canary:28 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }} # Conditional check for draft & labels per job.29 uses: ./.github/workflows/canary.yml30 secrets: inherit # pass all secrets from initial workflow to nested3132 xcm:33 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }} # Conditional check for draft & labels per job.34 uses: ./.github/workflows/xcm.yml35 secrets: inherit # pass all secrets from initial workflow to nested36 37 forkless:38 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job.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')) }} # Conditional check for draft & labels per job.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')) }} # Conditional check for draft & labels per job.47 uses: ./.github/workflows/node-only-update_v3.yml4849 codestyle:50 if: github.event.pull_request.draft == false # Conditional check for draft per job.51 uses: ./.github/workflows/codestyle_v2.yml52 53 yarn_eslint:54 if: github.event.pull_request.draft == false # Conditional check for draft per job.55 uses: ./.github/workflows/test_codestyle_v2.yml1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869783/CI+Develop2# Workflow which controls starts nested workflows.3name: develop45# Triger: PR at 'develop' branch with following types of events.6on:7 pull_request:8 branches: [ 'develop' ]9 types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]1011#Concurency group for control execution queue over github runners.12concurrency:13 group: ${{ github.workflow }}-${{ github.head_ref }}14 cancel-in-progress: true1516# List of a jobs included into Workflow.17jobs:1819 yarn-test-dev:20 if: github.event.pull_request.draft == false # Conditional check for draft per job.21 uses: ./.github/workflows/dev-build-tests_v2.yml222324 unit-test:25 if: github.event.pull_request.draft == false # Conditional check for draft per job.26 uses: ./.github/workflows/unit-test_v2.yml2728 canary:29 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'canary')) }} # Conditional check for draft & labels per job.30 uses: ./.github/workflows/canary.yml31 secrets: inherit # pass all secrets from initial workflow to nested3233 xcm:34 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'xcm')) }} # Conditional check for draft & labels per job.35 uses: ./.github/workflows/xcm.yml36 secrets: inherit # pass all secrets from initial workflow to nested37 38 forkless:39 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job.40 uses: ./.github/workflows/forkless.yml41 42 node-only-update:43 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'forkless')) }} # Conditional check for draft & labels per job.44 uses: ./.github/workflows/node-only-update_v2.yml45 46 parallel_and_sequential_tests:47 if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'para')) }} # Conditional check for draft & labels per job.48 uses: ./.github/workflows/node-only-update_v3.yml4950 codestyle:51 if: github.event.pull_request.draft == false # Conditional check for draft per job.52 uses: ./.github/workflows/codestyle_v2.yml53 54 yarn_eslint:55 if: github.event.pull_request.draft == false # Conditional check for draft per job.56 uses: ./.github/workflows/test_codestyle_v2.yml