Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/checkmarx-one-scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Trigger security scans in Checkmarx

name: Checkmarx Security Scan

on:
push:
branches: [master, main, develop]
paths-ignore:
- '.github/**'
- 'docs/**'
- 'tools/**'
- 'catalog-info.yaml'
- 'README.md'
pull_request:
paths-ignore:
- '.github/**'
- 'docs/**'
- 'tools/**'
- 'catalog-info.yaml'
- 'README.md'
workflow_dispatch:

jobs:
security-scan:
uses: unzercorp/unzer-tech-toolbox/.github/workflows/security-scan.yaml@ci-github/1.6
Comment on lines +24 to +25
with:
cx_threshold_preset: relaxed
cx_scan_profile: mobile-app
cx_scan_timeout: "30"
secrets:
CX_CLIENT_ID: ${{ secrets.CX_NON_PCI_TH_CORP_CLIENT_ID }}
CX_CLIENT_SECRET: ${{ secrets.CX_NON_PCI_TH_CORP_CLIENT_SECRET }}
Loading