git.delta.rocks / unique-network / refs/commits / b423b299a3df

difftreelog

source

.github/workflows/ci-master.yml1.8 KiBsourcehistory
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master2# Workflow which controls starts nested workflows.3name: master45# Triger: PR at 'master' branch with following types of events.6on:7  pull_request:8    branches: [ 'master' ]9    types: [ opened, reopened, synchronize, ready_for_review ]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    uses: ./.github/workflows/yarn-dev.yml21    secrets: inherit    2223  unit-test:24    uses: ./.github/workflows/unit-test.yml25    secrets: inherit    2627  # canary:28  #   uses: ./.github/workflows/canary.yml29  #   secrets: inherit # pass all secrets from initial workflow to nested3031  xcm:32    uses: ./.github/workflows/xcm.yml33    secrets: inherit # pass all secrets from initial workflow to nested34    35  collator-selection:36    uses: ./.github/workflows/collator-selection.yml37    secrets: inherit    3839  forkless-update-data:40    uses: ./.github/workflows/forkless-update-data.yml41    secrets: inherit # pass all secrets from initial workflow to nested    4243  forkless-update-no-data:44    uses: ./.github/workflows/forkless-update-nodata.yml45    secrets: inherit # pass all secrets from initial workflow to nested    4647  try-runtime:48    uses: ./.github/workflows/try-runtime.yml49    secrets: inherit # pass all secrets from initial workflow to nested    5051  node-only-update:52    uses: ./.github/workflows/node-only-update.yml53    secrets: inherit5455  governance:56    uses: ./.github/workflows/governance.yml57    secrets: inherit5859  codestyle:60    uses: ./.github/workflows/codestyle.yml61    secrets: inherit6263  polkadot-types:64    uses: ./.github/workflows/polkadot-types.yml656667