git.delta.rocks / unique-network / refs/commits / 2a3de5473dad

difftreelog

source

.github/workflows/ci-develop.yml2.5 KiBsourcehistory
1# 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-dev:20    if: github.event.pull_request.draft == false                                                                             # Conditional check for draft per job.21    uses: ./.github/workflows/yarn-dev.yml2223  unit-test:24    if: github.event.pull_request.draft == false                                                                             # Conditional check for draft per job.25    uses: ./.github/workflows/unit-test.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, 'node-only-update')) }}  # Conditional check for draft & labels per job.43    uses: ./.github/workflows/node-only-update.yml44    45  integration:46    if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'integration')) }}      # Conditional check for draft & labels per job.47    uses: ./.github/workflows/integration-tests.yml4849  codestyle:50    if: github.event.pull_request.draft == false                                                                             # Conditional check for draft per job.51    uses: ./.github/workflows/codestyle.yml