Skip to content

Commit

Permalink
feat: testing adding a sperate security workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielg2020 committed May 2, 2024
1 parent 05a96aa commit 9cdde37
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -314,3 +314,25 @@ jobs:
id-token: write
pull-requests: write
secrets: inherit

security:
name: security
needs:
- app
- orchestrator
strategy:
matrix:
project:
- api
- selfserve
- internal
exclude:
- project: ${{ (needs.orchestrator.outputs.should-build-api || needs.orchestrator.outputs.should-build-api-docker) && 'ignored' || 'api' }}
- project: ${{ (needs.orchestrator.outputs.should-build-selfserve || needs.orchestrator.outputs.should-build-selfserve-docker) && 'ignored' || 'selfserve' }}
- project: ${{ (needs.orchestrator.outputs.should-build-internal || needs.orchestrator.outputs.should-build-internal-docker) && 'ignored' || 'internal' }}\
uses: ./.github/workflows/security.yaml
with:
project: ${{ matrix.project }}
permissions:
contents: read
secrets: inherit

0 comments on commit 9cdde37

Please sign in to comment.