File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ name: ClusterFuzzLite batch fuzzing
2
2
on :
3
3
schedule :
4
4
- cron : ' 0 0/6 * * *'
5
+ workflow_dispatch :
6
+ inputs :
7
+ fuzz-seconds :
8
+ description : ' The total time allotted for fuzzing in seconds.'
9
+ required : true
10
+ default : 3600
11
+
5
12
permissions : read-all
6
13
jobs :
7
14
BatchFuzzing :
23
30
uses : google/clusterfuzzlite/actions/run_fuzzers@v1
24
31
with :
25
32
github-token : ${{ secrets.GITHUB_TOKEN }}
26
- fuzz-seconds : 3600
33
+ fuzz-seconds : ${{ github.event.inputs.fuzz-seconds || 3600 }}
27
34
mode : ' batch'
28
35
sanitizer : ${{ matrix.sanitizer }}
29
36
output-sarif : true
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ name: ClusterFuzzLite cron tasks
2
2
on :
3
3
schedule :
4
4
- cron : ' 0 0 * * *'
5
+ workflow_dispatch : {}
6
+
5
7
permissions : read-all
6
8
jobs :
7
9
Pruning :
You can’t perform that action at this time.
0 commit comments