cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v6.0.0-beta.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/semgrep.yml

21lines · modecode

1on:
2 workflow_dispatch: {}
3 schedule:
4 - cron: '0 4 * * *'
5name: Semgrep config
6jobs:
7 semgrep:
8 name: semgrep/ci
9 runs-on: ubuntu-latest
10 permissions:
11 contents: read
12 env:
13 SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
14 SEMGREP_URL: https://cloudflare.semgrep.dev
15 SEMGREP_APP_URL: https://cloudflare.semgrep.dev
16 SEMGREP_VERSION_CHECK_URL: https://cloudflare.semgrep.dev/api/check-version
17 container:
18 image: semgrep/semgrep
19 steps:
20 - uses: actions/checkout@v4
21 - run: semgrep ci
22