From 0e2b41963beca3a12d8c2328d60bfc5d22908334 Mon Sep 17 00:00:00 2001 From: Alex <12645087+lzadjsf@users.noreply.github.com> Date: Wed, 19 Oct 2022 07:52:12 +0000 Subject: [PATCH] Update ci-master.yml --- --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -1,14 +1,18 @@ +# Workflow which controls starts nested workflows. name: master +# Triger: PR at 'master' branch with following types of events. on: pull_request: branches: [ 'master' ] types: [ opened, reopened, synchronize, ready_for_review ] +#Concurency group for control execution queue over github runners. concurrency: group: ${{ github.workflow }}-${{ github.head_ref }} cancel-in-progress: true +# List of a jobs included into Workflow. jobs: unit-test: @@ -29,4 +33,4 @@ secrets: inherit # pass all secrets codestyle: - uses: ./.github/workflows/codestyle_v2.yml \ No newline at end of file + uses: ./.github/workflows/codestyle_v2.yml -- gitstuff