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 03aae67 commit 45c9b01Copy full SHA for 45c9b01
.github/workflows/semgrep.yml
@@ -0,0 +1,23 @@
1
+name: Semgrep
2
+on:
3
+ pull_request: {}
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ paths:
9
+ - .github/workflows/semgrep.yml
10
+ schedule:
11
+ - cron: '0 0 * * 0'
12
+jobs:
13
+ semgrep:
14
+ name: Scan
15
+ runs-on: ubuntu-20.04
16
+ env:
17
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
18
+ container:
19
+ image: returntocorp/semgrep
20
+ if: (github.actor != 'dependabot[bot]')
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - run: semgrep ci
0 commit comments