-
Notifications
You must be signed in to change notification settings - Fork 2
99 lines (80 loc) · 2.05 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate-pr:
uses: ./.github/workflows/validate-pr-title.yml
secrets: inherit
format:
uses: ./.github/workflows/format.yml
secrets: inherit
dependencies-check:
uses: ./.github/workflows/dependencies-check.yml
secrets: inherit
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
test:
uses: ./.github/workflows/test.yml
secrets: inherit
secrets-leaks:
uses: ./.github/workflows/secrets-leaks.yml
secrets: inherit
build:
uses: ./.github/workflows/build.yml
secrets: inherit
mergeable:
if: always()
needs:
- format
- lint
- test
- secrets-leaks
- build
- dependencies-check
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
id: all-green
with:
jobs: ${{ toJSON(needs) }}
www-preview-deployemnt:
needs: [mergeable]
uses: ./.github/workflows/www-preview-deployment.yml
secrets: inherit
blog-preview-deployemnt:
needs: [mergeable]
uses: ./.github/workflows/blog-preview-deployment.yml
secrets: inherit
# This is merely a trigger, so I can manually dispatch all prod deployments
production-deployemnt:
needs: [mergeable]
uses: ./.github/workflows/production-deployment.yml
secrets: inherit
www-production-deployemnt:
needs: [production-deployemnt]
uses: ./.github/workflows/www-production-deployment.yml
secrets: inherit
blog-production-deployemnt:
needs: [production-deployemnt]
uses: ./.github/workflows/blog-production-deployment.yml
secrets: inherit
# add this back when you deploy the api
# container-registry:
# needs: [production-deployemnt]
# uses: ./.github/workflows/container-registry.yml
# secrets: inherit