From d7af82c3ef63c85d7b55bdc55eee2b7957c597c9 Mon Sep 17 00:00:00 2001 From: julienwoll <61012554+julienwoll@users.noreply.github.com> Date: Mon, 7 Mar 2022 12:36:58 +0100 Subject: [PATCH] semgrep integration (#128) Co-authored-by: julienwoll <> --- .github/workflows/semgrep.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/semgrep.yml diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml new file mode 100644 index 0000000..b4035d1 --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,15 @@ +name: Semgrep +on: + pull_request: {} + push: + branches: ["master"] +jobs: + semgrep: + name: Scan + runs-on: ubuntu-latest + if: (github.actor != 'dependabot[bot]' && github.actor != 'snyk-bot') + steps: + - uses: actions/checkout@v2 + - uses: returntocorp/semgrep-action@v1 + with: + publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} \ No newline at end of file