summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2020-05-08 18:46:46 +0200
committerEvgeny Vereshchagin <evvers@ya.ru>2020-05-08 20:58:11 +0300
commit94f660a8fe6144b9153c8acaf9e6bb9e47e14b97 (patch)
treef111f57f6d45055834cedadec4c34bb8b09fa966 /.github
parentf2a8372e37a1e07d5e52a73065b26d96b0e3999e (diff)
downloadsystemd-94f660a8fe6144b9153c8acaf9e6bb9e47e14b97.tar.gz
cifuzz: run only for relevant PRs
Fuzz only PRs with relevant changes (source code and fuzzer corpora) to save resources.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml10
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