Skip to content

PA-24295 Inssqs Implementation #4

PA-24295 Inssqs Implementation

PA-24295 Inssqs Implementation #4

Workflow file for this run

name: CxFlow-GitHub-Pull-Request
on:
pull_request:
types: [ready_for_review]
jobs:
build:
runs-on: self-runner-node
steps:
- name: Trigger to Scanner Lambda
run: |
python -c '
import json,sys,requests;
github = {"repository": "'${{ github.event.repository.name }}'", "ref": "'${{ github.head_ref }}'"};
github_request = {"checkmarx_gitaction": github};
requests.post("'$LambdaWebHook'", json=github_request);'
env:
LambdaWebHook: ${{ secrets.CHECKMARX_LAMBDA_WEBHOOK }}