mirror of https://github.com/google/oss-fuzz.git
18 lines
475 B
YAML
18 lines
475 B
YAML
# action.yml
|
|
name: 'run-fuzzers'
|
|
description: 'Runs fuzz target binaries for a specified length of time.'
|
|
inputs:
|
|
fuzz-seconds:
|
|
description: 'The total time allotted for fuzzing in seconds.'
|
|
required: true
|
|
default: 600
|
|
dry-run:
|
|
description: 'If set, run the action without actually reporting a failure.'
|
|
default: false
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
env:
|
|
FUZZ_SECONDS: ${{ inputs.fuzz-seconds }}
|
|
DRY_RUN: ${{ inputs.dry-run}}
|