forked from semgrep/semgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (44 loc) · 1.19 KB
/
semgrep.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# AUTOGENERATED FROM semgrep.jsonnet DO NOT MODIFY
jobs:
semgrep-ci:
container:
image: semgrep/semgrep:canary
env:
E2E_APP_TOKEN: ${{ secrets.SEMGREP_E2E_APP_TOKEN }}
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
if: (github.actor != 'dependabot[bot]')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: semgrep ci
semgrep-ci-debug:
container:
image: semgrep/semgrep:canary
env:
E2E_APP_TOKEN: ${{ secrets.SEMGREP_E2E_APP_TOKEN }}
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
if: (github.actor != 'dependabot[bot]')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: semgrep ci --debug
semgrep-ci-oss:
container:
image: semgrep/semgrep:canary
env:
E2E_APP_TOKEN: ${{ secrets.SEMGREP_E2E_APP_TOKEN }}
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
if: (github.actor != 'dependabot[bot]')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: semgrep ci --oss-only
name: semgrep
on:
pull_request_target: {}
push:
branches:
- develop
schedule:
- cron: 50 15 * * *
workflow_dispatch: null