-
Notifications
You must be signed in to change notification settings - Fork 2
119 lines (105 loc) · 3.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# 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
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
contents: write
id-token: write
actions: write
security-events: write
checks: write
issues: read
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
app_common:
needs: changes
if: ${{ needs.changes.outputs.app_common == 'true' }}
uses: ./.github/workflows/app-common-bundle-publish.yml
secrets: inherit
featuremanagement:
needs: changes
if: ${{ needs.changes.outputs.featuremanagement == 'true' }}
uses: ./.github/workflows/featuremanagement-ci.yml
secrets: inherit
json_serialization:
needs: changes
if: ${{ needs.changes.outputs.json_serialization == 'true' }}
uses: ./.github/workflows/json-serialization-bundle-publish.yml
secrets: inherit
logging:
needs: changes
if: ${{ needs.changes.outputs.logging == 'true' }}
uses: ./.github/workflows/logging-bundle-publish.yml
secrets: inherit
messaging:
needs: changes
if: ${{ needs.changes.outputs.messaging == 'true' }}
uses: ./.github/workflows/messaging-bundle-publish.yml
secrets: inherit
testcommon:
needs: changes
if: ${{ needs.changes.outputs.testcommon == 'true' }}
uses: ./.github/workflows/testcommon-bundle-publish.yml
secrets: inherit
databricks:
needs: changes
if: ${{ needs.changes.outputs.databricks == 'true' }}
uses: ./.github/workflows/databricks-bundle-publish.yml
secrets: inherit
outbox:
needs: changes
if: ${{ needs.changes.outputs.outbox == 'true' }}
uses: ./.github/workflows/outbox-bundle-publish.yml
secrets: inherit
#
# Branch policy status check
#
allow_merge_ci_orchestrator:
runs-on: ubuntu-latest
needs:
[
ci_base,
app_common,
featuremanagement,
json_serialization,
logging,
messaging,
testcommon,
databricks,
]
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