Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable governance workflow for develop and master branch #981

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
Loading