diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2020-05-08 18:46:46 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2020-05-08 19:58:11 +0200 |
commit | 94f660a8fe6144b9153c8acaf9e6bb9e47e14b97 (patch) | |
tree | f111f57f6d45055834cedadec4c34bb8b09fa966 /.github/workflows | |
parent | Merge pull request #15703 from poettering/homed-tweak-default-storage (diff) | |
download | systemd-94f660a8fe6144b9153c8acaf9e6bb9e47e14b97.tar.xz systemd-94f660a8fe6144b9153c8acaf9e6bb9e47e14b97.zip |
cifuzz: run only for relevant PRs
Fuzz only PRs with relevant changes (source code and fuzzer corpora) to
save resources.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24715cb950..0661e493e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 |