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 75137db commit 0ff369bCopy full SHA for 0ff369b
.github/workflows/semgrep.yml
@@ -0,0 +1,23 @@
1
+
2
+on:
3
+ pull_request: {}
4
+ workflow_dispatch: {}
5
+ push:
6
+ branches:
7
+ - main
8
+ - master
9
+name: Semgrep config
10
+jobs:
11
+ semgrep:
12
+ name: semgrep/ci
13
+ runs-on: ubuntu-20.04
14
+ env:
15
+ SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
16
+ SEMGREP_URL: https://cloudflare.semgrep.dev
17
+ SEMGREP_APP_URL: https://cloudflare.semgrep.dev
18
+ SEMGREP_VERSION_CHECK_URL: https://cloudflare.semgrep.dev/api/check-version
19
+ container:
20
+ image: returntocorp/semgrep
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - run: semgrep ci
0 commit comments