From 06390e23717535ff2563da84314f976df3d9efc2 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Wed, 20 Oct 2021 12:01:35 +0000 Subject: [PATCH] [coverity] skip forks to stop GitHub from sending notifications about failed attemtps to run the Coverity workflow without `COVERITY_SCAN_TOKEN` like https://github.com/evverx/libbpf/actions/runs/1364759947 Signed-off-by: Evgeny Vereshchagin --- .github/workflows/coverity.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 4adb184..11d2c65 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -8,6 +8,7 @@ on: jobs: coverity: runs-on: ubuntu-latest + if: github.repository == 'libbpf/libbpf' name: Coverity steps: - uses: actions/checkout@v2