From 1aa4a9338e6dfdd701172f4ab5f891e013b6ec1e Mon Sep 17 00:00:00 2001 From: Aditya Gaddam <81372188+lostinauth0@users.noreply.github.com> Date: Mon, 31 Jul 2023 10:48:36 -0600 Subject: [PATCH] Create semgrep.yml --- .github/workflows/semgrep.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..1ba433de --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,18 @@ +name: Semgrep + +on: + pull_request_target: {} + push: + branches: ["master", "main"] +jobs: + semgrep: + name: Scan + runs-on: ubuntu-latest + container: + image: returntocorp/semgrep + if: (github.actor != 'dependabot[bot]' && github.actor != 'snyk-bot') + steps: + - uses: actions/checkout@v3 + - run: semgrep ci + env: + SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}