We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8db2d commit 994a3b4Copy full SHA for 994a3b4
.github/workflows/semgrep.yml
@@ -0,0 +1,25 @@
1
+name: Semgrep
2
+
3
+on:
4
+ pull_request: {}
5
6
+ push:
7
+ branches: ["master", "main"]
8
9
+ schedule:
10
+ - cron: '30 0 1,15 * *'
11
12
+jobs:
13
+ semgrep:
14
+ name: Scan
15
+ runs-on: ubuntu-latest
16
+ container:
17
+ image: returntocorp/semgrep
18
+ # Skip any PR created by dependabot to avoid permission issues
19
+ if: (github.actor != 'dependabot[bot]')
20
+ steps:
21
+ - uses: actions/checkout@v3
22
23
+ - run: semgrep ci
24
+ env:
25
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
0 commit comments