From 415d44606549ec0e1c566a4da3b16b65d5857598 Mon Sep 17 00:00:00 2001 From: Ilia Shipitsin Date: Thu, 27 Mar 2025 22:29:21 +0100 Subject: [PATCH] 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 --- .github/workflows/quic-interop-libressl.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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