Skip to content

Commit 925c39a

Browse files
authored
Merge pull request #82 from julienwoll/semgrep-integration
semgrep integration
2 parents bf19e64 + 1a3c14e commit 925c39a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/semgrep.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)