-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.16 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
name: CI orchestrator
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
#
# License and Markdown Check.
#
ci_base:
uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v14
with:
skip_license_check: true
secrets:
dh3serviceaccount_privatekey: ${{ secrets.dh3serviceaccount_privatekey }}
changes:
uses: ./.github/workflows/detect-changes.yml
ci_electrical_heating:
needs: [changes]
if: ${{ needs.changes.outputs.electrical_heating == 'true' }}
uses: ./.github/workflows/ci-electrical-heating.yml
#
# Branch policy status check
#
allow_merge_ci_orchestrator:
runs-on: ubuntu-latest
needs:
[
changes,
ci_base,
ci_electrical_heating,
]
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