From 96e9b50e1aeff3304c52e91baad9985ee122b182 Mon Sep 17 00:00:00 2001 From: "semgrep.dev on behalf of @gitatb" Date: Tue, 30 Nov 2021 23:33:32 +0000 Subject: [PATCH] Add Semgrep CI --- .github/workflows/semgrep.yml | 16 ++++++++++++++++ 1 file changed, 16 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 0000000000..ca54ccb98e --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,16 @@ +on: + pull_request: {} + push: + branches: + - main + - master +name: Semgrep +jobs: + semgrep: + name: Scan + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: returntocorp/semgrep-action@v1 + with: + publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}