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 2ccecdc commit c53c30eCopy full SHA for c53c30e
.github/workflows/cflite_batch.yml
@@ -6,6 +6,12 @@ on:
6
schedule:
7
- cron: '0 6,8 * * *' # Run twice a day at low activity times
8
workflow_dispatch: # Manual trigger for testing
9
+ inputs:
10
+ fuzz-seconds:
11
+ description: 'Number of seconds to fuzz (total, not per test)'
12
+ required: false
13
+ type: number
14
+ default: 3600
15
16
permissions: read-all
17
@@ -30,7 +36,8 @@ jobs:
30
36
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
31
37
with:
32
38
github-token: ${{ secrets.GITHUB_TOKEN }}
33
- fuzz-seconds: 3600 # 60min
39
+ # 1 hour on schedule, configurable on manual trigger.
40
+ fuzz-seconds: ${{ github.event.inputs.fuzz-seconds || 3600 }}
34
41
mode: 'batch'
35
42
sanitizer: ${{ matrix.sanitizer }}
43
# Optional but recommended: For storing certain artifacts from fuzzing.
0 commit comments