diff --git a/.github/workflows/cflite_batch.yml b/.github/workflows/cflite_batch.yml index 4beb4d226f..c25f1901ef 100644 --- a/.github/workflows/cflite_batch.yml +++ b/.github/workflows/cflite_batch.yml @@ -3,8 +3,8 @@ name: ClusterFuzzLite batch fuzzing on: schedule: - - cron: '0 14 * * *' # Run daily, hour chosen by fair dice roll - workflow_dispatch: # Manual trigger for testing + - cron: '0 6,8 * * *' # Run twice a day at low activity times + workflow_dispatch: # Manual trigger for testing permissions: read-all jobs: BatchFuzzing: @@ -28,7 +28,7 @@ jobs: uses: google/clusterfuzzlite/actions/run_fuzzers@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - fuzz-seconds: 900 # 15min + fuzz-seconds: 3600 # 60min mode: 'batch' sanitizer: ${{ matrix.sanitizer }} # Optional but recommended: For storing certain artifacts from fuzzing. diff --git a/.github/workflows/cflite_cron.yml b/.github/workflows/cflite_cron.yml index 2b7b848bbb..7ace86f038 100644 --- a/.github/workflows/cflite_cron.yml +++ b/.github/workflows/cflite_cron.yml @@ -3,7 +3,7 @@ name: ClusterFuzzLite cron tasks on: schedule: - - cron: '0 16 * * *' # Once a day, after fuzzing run + - cron: '0 10 * * *' # Once a day, after fuzzing run workflow_dispatch: # Manual trigger for testing permissions: read-all