cifuzz: run only for relevant PRs

Fuzz only PRs with relevant changes (source code and fuzzer corpora) to
save resources.
This commit is contained in:
Frantisek Sumsal 2020-05-08 18:46:46 +02:00 committed by Evgeny Vereshchagin
parent f2a8372e37
commit 94f660a8fe
1 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,15 @@
# See: https://google.github.io/oss-fuzz/getting-started/continuous-integration/
name: CIFuzz
on: [pull_request]
on:
pull_request:
paths:
- '**/meson.build'
- '.github/workflows/**'
- 'meson_options.txt'
- 'src/**'
- 'test/fuzz/**'
- 'tools/oss-fuzz.sh'
jobs:
Fuzzing:
runs-on: ubuntu-latest