-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Security SDLC Snyk Container Analysis
- Loading branch information
1 parent
43f5c54
commit ee07b26
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
.github/workflows/security_sdlc_snyk_container_analysis.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |