From 6878b4fe823928456763e9d7537ae24e21d9de02 Mon Sep 17 00:00:00 2001 From: Alex <12645087+lzadjsf@users.noreply.github.com> Date: Wed, 19 Oct 2022 07:51:59 +0000 Subject: [PATCH] Update ci-develop.yml --- --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -1,14 +1,18 @@ +# Workflow which controls starts nested workflows. name: develop +# Triger: PR at 'develop' branch with following types of events. on: pull_request: branches: [ 'develop' ] types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ] +#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: yarn-test-dev: -- gitstuff