diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2020-05-19 07:58:14 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2020-05-19 08:12:07 +0200 |
commit | 82d7a25ee64d6a582c72355931a481f11f852ec7 (patch) | |
tree | 07afdeb6e3fed645e4193159300763988c93f767 | |
parent | 34d16bad2d07444dcdae380480f5cc8c5eea8eaa (diff) | |
download | systemd-82d7a25ee64d6a582c72355931a481f11f852ec7.tar.gz |
cifuzz: protect forks from CIFuzz
CIFuzz isn't compatible with forks: https://github.com/google/oss-fuzz/issues/3731
-rw-r--r-- | .github/workflows/main.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee5dd098e9..b46b1d619e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,7 @@ on: jobs: Fuzzing: runs-on: ubuntu-latest + if: github.repository == 'systemd/systemd' steps: - name: Build Fuzzers id: build |