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 ea5f18d commit f28047aCopy full SHA for f28047a
1 file changed
.github/workflows/semgrep.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ pull_request: {}
3
+ push:
4
+ branches:
5
+ - main
6
+ - master
7
+ paths:
8
+ - .github/workflows/semgrep.yml
9
+ schedule:
10
+ # random HH:MM to avoid a load spike on GitHub Actions at 00:00
11
+ - cron: 44 6 * * *
12
+name: Semgrep
13
+jobs:
14
+ semgrep:
15
+ name: Scan
16
+ runs-on: ubuntu-20.04
17
+ env:
18
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
19
+ container:
20
+ image: returntocorp/semgrep
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - run: semgrep ci
0 commit comments