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 9ec7816 commit 10204b0Copy full SHA for 10204b0
.github/workflows/osv-scanner.yml
@@ -0,0 +1,26 @@
1
+name: OSV Scanner
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
+ merge_group:
7
8
+ push:
9
10
+ schedule:
11
+ - cron: '0 3 * * *' # Daily at 03:00 UTC
12
+ workflow_dispatch:
13
14
+permissions:
15
+ actions: read
16
+ contents: read
17
+ security-events: write
18
19
+jobs:
20
+ scan-pr:
21
+ if: github.event_name == 'pull_request' || github.event_name == 'merge_group'
22
+ uses: google/osv-scanner-action/.github/workflows/[email protected]
23
24
+ scan-scheduled:
25
+ if: github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch'
26
0 commit comments