diff --git a/.github/workflows/checkmarx.yml b/.github/workflows/checkmarx.yml new file mode 100644 index 0000000000..f8509089d1 --- /dev/null +++ b/.github/workflows/checkmarx.yml @@ -0,0 +1,22 @@ +on: + pull_request: + push: + branches: + - main + - master + schedule: + - cron: '0 13 * * 5' + workflow_dispatch: +name: Checkmarx SAST Scan +jobs: + call-reusable-checkmarx: + name: Call Reusable Checkmarx Workflow + uses: Replicon/time-intelligence-web/.github/workflows/reusable-checkmarx.yml@main + with: + timeout_minutes: 90 + scheduled_timeout_minutes: 360 + secrets: + checkmarx_username: ${{ secrets.CHECKMARX_USERNAME }} + checkmarx_password: ${{ secrets.CHECKMARX_PASSWORD }} + checkmarx_client_secret: ${{ secrets.CHECKMARX_CLIENT_SECRET }} +