Skip to content

Create workflow for monorepo CI build #1

Create workflow for monorepo CI build

Create workflow for monorepo CI build #1

# Copyright 2020 Energinet DataHub A/S
#
# Licensed under the Apache License, Version 2.0 (the "License2");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI orchestrator (mono-repo)
on:
pull_request:
branches:
- main
jobs:
#
# License and Markdown Check
#
ci_base:
uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v14
secrets:
dh3serviceaccount_privatekey: ${{ secrets.dh3serviceaccount_privatekey }}
#
# Detect changes to start relevant workflows
#
changes:
uses: ./.github/workflows/detect-changes.yml
# ci_dotnet:
# needs: changes
# if: ${{ needs.changes.outputs.dotnet == 'true' || needs.changes.outputs.db_migrations == 'true' }}
# uses: ./.github/workflows/ci-dotnet.yml
# ci_processmanager_nuget:
# needs: changes
# if: ${{ needs.changes.outputs.processmanager_nuget == 'true' }}
# uses: ./.github/workflows/processmanager-client-bundle-publish.yml
# secrets: inherit
#
# Branch policy status check
#
# allow_merge_ci_orchestrator:
# runs-on: ubuntu-latest
# needs:
# [
# ci_base,
# ci_dotnet,
# ci_processmanager_nuget,
# ]
# if: |
# always()
# steps:
# - name: Verify if merge is allowed
# run: |
# echo "${{ toJSON(needs) }}"
# if [[ ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} = true ]]; then
# echo "Failed"
# exit 1
# fi