-
Notifications
You must be signed in to change notification settings - Fork 204
58 lines (50 loc) · 1.02 KB
/
devel.yaml
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
name: Devel
on:
push:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
trivy:
permissions:
actions: read
contents: read
security-events: write
uses: "./.github/workflows/lib-trivy.yaml"
with:
upload-to-github-security-tab: true
validate:
uses: "./.github/workflows/lib-validate.yaml"
codeql:
permissions:
actions: read
contents: read
security-events: write
uses: "./.github/workflows/lib-codeql.yaml"
scorecard:
permissions:
contents: read
id-token: write
security-events: write
uses: "./.github/workflows/lib-scorecard.yaml"
build:
needs:
- validate
- trivy
uses: "./.github/workflows/lib-build.yaml"
e2e:
needs:
- build
uses: "./.github/workflows/lib-e2e.yaml"
# devel image push
publish:
permissions:
contents: read
id-token: write
needs:
- e2e
- build
uses: "./.github/workflows/lib-publish.yaml"
secrets: inherit