-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.36 KB
/
ci-orchestrator.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: CI orchestrator
on:
pull_request:
branches:
- main
jobs:
#
# License and Markdown Check
#
ci_base:
uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v13
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
render_c4model_views:
needs: changes
if: ${{ needs.changes.outputs.render_c4model_views == 'true' }}
uses: Energinet-DataHub/.github/.github/workflows/structurizr-render-diagrams.yml@v13
with:
structurizr_workspace_filename: views
included_model_filename: model
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
#
# Branch policy status check
#
allow_merge_ci_orchestrator:
runs-on: ubuntu-latest
needs: [ci_base, ci_dotnet, render_c4model_views]
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