diff options
author | Brent Cook <busterb@gmail.com> | 2023-07-07 04:22:35 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-07-07 04:22:35 -0500 |
commit | adca8a2f0ac1e6b2a4c4b2363cc1b6fb4389b02c (patch) | |
tree | 76fab540ff1be46ac3c0437b2afbef455b870399 /.github | |
parent | 6000f4de8f5bead23cce1a5cc1f701bf69e16181 (diff) | |
parent | e1d6f782966399be59a0c15deb051f8f11fa6ebd (diff) | |
download | portable-adca8a2f0ac1e6b2a4c4b2363cc1b6fb4389b02c.tar.gz portable-adca8a2f0ac1e6b2a4c4b2363cc1b6fb4389b02c.tar.bz2 portable-adca8a2f0ac1e6b2a4c4b2363cc1b6fb4389b02c.zip |
Land #885, change the trigger for running fuzzer tests
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cifuzz.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 8c25624..bdb3b2c 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml | |||
@@ -1,5 +1,10 @@ | |||
1 | name: CIFuzz | 1 | name: CIFuzz |
2 | on: [pull_request] | 2 | |
3 | on: | ||
4 | workflow_dispatch: | ||
5 | schedule: | ||
6 | - cron: "0 0 * * *" | ||
7 | |||
3 | jobs: | 8 | jobs: |
4 | Fuzzing: | 9 | Fuzzing: |
5 | runs-on: ubuntu-latest | 10 | runs-on: ubuntu-latest |