-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (29 loc) · 1.31 KB
/
security_sdlc_snyk_container_analysis.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
name: sdlc_snyk_container_analysis
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
wait-for-pr-ci:
uses: OutSystems/sdlc-gha-snyk/.github/workflows/wait-for-pr-check.yml@v1
secrets: inherit
with:
commitSha: ${{ github.event.pull_request.head.sha }}
runnerName: wait-for-pr-ci
checkName: SDLC.TestNotes.Provider.Service-PR # YOU NEED TO EDIT THIS
call-sdlc-snyk-container:
needs: wait-for-pr-ci
uses: OutSystems/sdlc-gha-snyk/.github/workflows/[email protected] #This is in a non-blokcing mode
secrets: inherit
with:
serviceName: "outsystems-sdlc-testnotes-service" # YOU NEED TO EDIT THIS
commitSha: ${{ github.event.pull_request.head.sha }}
dockerFilePath: Dockerfile # YOU (MAY) NEED TO EDIT THIS
call-sdlc-snyk-container-ct:
needs: wait-for-pr-ci
uses: OutSystems/sdlc-gha-snyk/.github/workflows/[email protected] #This is in a non-blokcing mode
secrets: inherit
with:
serviceName: "outsystems-sdlc-testnotes-service-ct" # YOU NEED TO EDIT THIS
commitSha: ${{ github.event.pull_request.head.sha }}
dockerFilePath: Dockerfile # YOU (MAY) NEED TO EDIT THIS