Skip to content

Commit

Permalink
Update security scan workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-security-workflows committed Aug 2, 2023
1 parent 79a7a58 commit 1645dee
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/security-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Do not modify! This file is managed through automation.
# Contact Security Engineering in #security-engineering.

name: Security
on:
schedule:
- cron: '15 0 * * 0'
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master
- 'release**'
- 'production**'
push:
branches:
- master
- 'release**'
- 'production**'
workflow_dispatch:

jobs:
code-scan:
name: Code
if: ${{ !github.event_name == 'pull_request' || !github.event.pull_request.draft }}
uses: Addepar/security-workflows/.github/workflows/security-scan-code.yml@main
secrets: inherit

library-scan:
name: Library
if: ${{ !github.event_name == 'pull_request' || !github.event.pull_request.draft }}
uses: Addepar/security-workflows/.github/workflows/security-scan-library.yml@main
secrets: inherit

configuration-scan:
name: Configuration
if: ${{ !github.event_name == 'pull_request' || !github.event.pull_request.draft }}
uses: Addepar/security-workflows/.github/workflows/security-scan-configuration.yml@main
secrets: inherit

0 comments on commit 1645dee

Please sign in to comment.