From 98d4caf00043034e0eb57cc4b07ee9a2fac8ad3f Mon Sep 17 00:00:00 2001 From: Philipp Pracht Date: Tue, 1 Oct 2024 13:24:26 +0200 Subject: [PATCH] Create checkmarx.yml --- .github/workflows/checkmarx.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/checkmarx.yml diff --git a/.github/workflows/checkmarx.yml b/.github/workflows/checkmarx.yml new file mode 100644 index 0000000000..766afd7f77 --- /dev/null +++ b/.github/workflows/checkmarx.yml @@ -0,0 +1,17 @@ +name: Checkmarx One Scan +on: workflow_dispatch +jobs: + trigger_scan: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Checkmarx One CLI Action + uses: checkmarx/ast-github-action@main #Github Action version + with: + project_name: Luigi + cx_tenant: sap + base_uri: https://checkmarx.tools.sap + base_auth_uri: https://checkmarx.tools.sap + cx_client_id: ${{ secrets.CXONE_CLIENT_ID }} + cx_client_secret: ${{ secrets.CXONE_CLIENT_SECRET }}