From: Ilia Shipitsin Date: Thu, 27 Mar 2025 21:29:21 +0000 (+0100) Subject: CI: QUIC Interop on LibreSSL: allow "on: workflow_dispatch" in forks X-Git-Tag: v3.2-dev9~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=415d44606549ec0e1c566a4da3b16b65d5857598;p=thirdparty%2Fhaproxy.git CI: QUIC Interop on LibreSSL: 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/quic-interop-libressl.yml b/.github/workflows/quic-interop-libressl.yml index 166069bca..96ea1995b 100644 --- a/.github/workflows/quic-interop-libressl.yml +++ b/.github/workflows/quic-interop-libressl.yml @@ -13,7 +13,7 @@ on: jobs: build: runs-on: ubuntu-24.04 - if: ${{ github.repository_owner == 'haproxy' }} + if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} permissions: contents: read packages: write @@ -59,7 +59,7 @@ jobs: name: ${{ matrix.suite.client }} runs-on: ubuntu-24.04 - if: ${{ github.repository_owner == 'haproxy' }} + if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} steps: - uses: actions/checkout@v4