diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-11-07 04:34:04 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-11-07 04:34:04 +0100 |
commit | 4670b97ef87c7b0f21283c9b07c7191be88dda05 (patch) | |
tree | 02962776278d77c975d9eb8f826ffeb1132c08d4 /.github | |
parent | Add CIFuzz integration (diff) | |
download | openssh-4670b97ef87c7b0f21283c9b07c7191be88dda05.tar.xz openssh-4670b97ef87c7b0f21283c9b07c7191be88dda05.zip |
Run cifuzz workflow on the actions as regular CI.
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 0396e1142..adbc31c9e 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -1,5 +1,10 @@ name: CIFuzz -on: [pull_request] +on: + push: + paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ] + pull_request: + paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ] + jobs: Fuzzing: runs-on: ubuntu-latest |