diff --git a/.github/workflows/ci-develop.yml b/.github/workflows/ci-develop.yml index c24cac2b70..d03648cfbf 100644 --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -5,7 +5,7 @@ name: develop # Triger: PR at 'develop' branch with following types of events. on: pull_request: - branches: [ 'develop', 'ci/baedeker' ] + branches: [ 'develop' ] types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ] #Concurency group for control execution queue over github runners. @@ -61,9 +61,9 @@ jobs: uses: ./.github/workflows/node-only-update.yml secrets: inherit - gov: + governance: if: ${{ (github.event.pull_request.draft == false && contains( github.event.pull_request.labels.*.name, 'CI-gov')) }} # Conditional check for draft & labels per job. - uses: ./.github/workflows/gov.yml + uses: ./.github/workflows/governance.yml secrets: inherit # pass all secrets from initial workflow to nested codestyle: diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index 698feda7f6..106c1a0940 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -52,6 +52,10 @@ jobs: uses: ./.github/workflows/node-only-update.yml secrets: inherit + governance: + uses: ./.github/workflows/governance.yml + secrets: inherit + codestyle: uses: ./.github/workflows/codestyle.yml secrets: inherit diff --git a/.github/workflows/gov.yml b/.github/workflows/governance.yml similarity index 100% rename from .github/workflows/gov.yml rename to .github/workflows/governance.yml