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