Skip to content

Commit

Permalink
Automated merge branch 'develop' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanine-deployment[bot] committed Jan 29, 2024
2 parents 4220368 + 1da3c30 commit 330597c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cxflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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 }}
15 changes: 15 additions & 0 deletions .github/workflows/git-leak.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Gitleaks-Action
on: [push]
jobs:
build:
runs-on: self-runner-node
steps:
- name: Trigger to Gitleak
run: |
python -c '
import json,sys,requests;
github = {"repository": "'${{ github.event.repository.name }}'", "ref": "'${{ github.ref_name }}'"};
github_request = {"insider_gitleak": github};
requests.post("'$LambdaWebHook'", json=github_request);'
env:
LambdaWebHook: ${{ secrets.CHECKMARX_LAMBDA_WEBHOOK }}

0 comments on commit 330597c

Please sign in to comment.