From: Ilia Shipitsin Date: Thu, 27 Mar 2025 21:29:16 +0000 (+0100) Subject: CI: coverity scan: allow "on: workflow_dispatch" in forks X-Git-Tag: v3.2-dev9~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7eb54656aec63b93d2bd1714bffd2e93eac05782;p=thirdparty%2Fhaproxy.git CI: coverity scan: allow "on: workflow_dispatch" in forks previously that build were limited to "haproxy" github organization only. let's allow manual builds from forks --- diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index e52e6de04..bbea42eda 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -15,7 +15,7 @@ permissions: jobs: scan: runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'haproxy' }} + if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - uses: actions/checkout@v4 - name: Install apt dependencies