mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-22 05:38:00 +00:00
25 lines
513 B
YAML
25 lines
513 B
YAML
name: Semgrep
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
semgrep:
|
|
name: Scan
|
|
if: "! startsWith(github.event.head_commit.message, '[CI Skip]')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: returntocorp/semgrep-action@v1
|
|
with:
|
|
auditOn: push
|
|
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}
|
|
publishDeployment: 1395
|
|
dummy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: dummy
|
|
run: |
|
|
echo "Dummy skip step"
|