We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd47478 commit c3a54b5Copy full SHA for c3a54b5
.github/workflows/semgrep.yml
@@ -0,0 +1,22 @@
1
+name: Semgrep
2
+on:
3
+ push:
4
+ branches:
5
+ - varun-semgrep
6
+ #pull_request:
7
+ #workflow_dispatch:
8
+
9
+jobs:
10
+ semgrep:
11
+ name: Run Semgrep
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 30
14
+ container:
15
+ # A Docker image with Semgrep installed. Do not change this.
16
+ image: returntocorp/semgrep
17
+ if: (github.actor != dependabot[bot])
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - run: semgrep ci
21
+ env:
22
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN_PUBLIC }}
0 commit comments