git.delta.rocks / unique-network / refs/commits / 0e2b41963bec

difftreelog

Update ci-master.yml

Alex2022-10-19parent: #6878b4f.patch.diff
in: master

1 file changed

modified.github/workflows/ci-master.ymldiffbeforeafterboth
before · .github/workflows/ci-master.yml
1name: master23on:4  pull_request:5    branches: [ 'master' ]6    types: [ opened, reopened, synchronize, ready_for_review ]78concurrency:9  group: ${{ github.workflow }}-${{ github.head_ref }}10  cancel-in-progress: true1112jobs:1314  unit-test:15    uses: ./.github/workflows/unit-test_v2.yml1617  node-only-update:18    uses: ./.github/workflows/node-only-update_v2.yml1920  forkless:21    uses: ./.github/workflows/forkless.yml2223  canary:24    uses: ./.github/workflows/canary.yml25    secrets: inherit # pass all secrets2627  xcm:28    uses: ./.github/workflows/xcm.yml29    secrets: inherit # pass all secrets3031  codestyle:32    uses: ./.github/workflows/codestyle_v2.yml
after · .github/workflows/ci-master.yml
1# Workflow which controls starts nested workflows.2name: master34# Triger: PR at 'master' branch with following types of events.5on:6  pull_request:7    branches: [ 'master' ]8    types: [ opened, reopened, synchronize, ready_for_review ]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  unit-test:19    uses: ./.github/workflows/unit-test_v2.yml2021  node-only-update:22    uses: ./.github/workflows/node-only-update_v2.yml2324  forkless:25    uses: ./.github/workflows/forkless.yml2627  canary:28    uses: ./.github/workflows/canary.yml29    secrets: inherit # pass all secrets3031  xcm:32    uses: ./.github/workflows/xcm.yml33    secrets: inherit # pass all secrets3435  codestyle:36    uses: ./.github/workflows/codestyle_v2.yml