summaryrefslogtreecommitdiffstats
path: root/.github/workflows/cflite_cron.yaml
blob: d46a4dab7911773b18fd4bb7de11ec47936bbaef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: ClusterFuzzLite cron tasks
on:
  schedule:
  - cron: '0 0 * * *'
permissions: read-all
jobs:
  Pruning:
    runs-on: ubuntu-latest
    steps:
    - name: Build Fuzzers
      id: build
      uses: google/clusterfuzzlite/actions/build_fuzzers@v1
    - name: Run Fuzzers
      id: run
      uses: google/clusterfuzzlite/actions/run_fuzzers@v1
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        fuzz-seconds: 600
        mode: 'prune'