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
--
2.46.0.windows.1