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 bf19e64 commit 1a3c14eCopy full SHA for 1a3c14e
.github/workflows/semgrep.yml
@@ -0,0 +1,15 @@
1
+name: Semgrep
2
+on:
3
+ pull_request: {}
4
+ push:
5
+ branches: ["master"]
6
+jobs:
7
+ semgrep:
8
+ name: Scan
9
+ runs-on: ubuntu-latest
10
+ if: (github.actor != 'dependabot[bot]' && github.actor != 'snyk-bot')
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: returntocorp/semgrep-action@v1
14
+ with:
15
+ publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}
0 commit comments