From e1d6f782966399be59a0c15deb051f8f11fa6ebd Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 7 Jul 2023 08:34:16 +0300 Subject: change the trigger for running fuzzer tests Since fuzzers benefit more from being run regularly on the openbsd tree, and they take a long time, does it make more sense that the trigger is a cron like the Coverity job? They sometimes don't work in branches anyway, since the fuzz builds rely on external code being updated to match the master branch. --- .github/workflows/cifuzz.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 @@ name: CIFuzz -on: [pull_request] + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + jobs: Fuzzing: runs-on: ubuntu-latest -- cgit v1.2.3-55-g6feb