previously that build were limited to "haproxy" github organization
only. let's allow manual builds from forks
---
.github/workflows/quic-interop-aws-lc.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/quic-interop-aws-lc.yml
b/.github/workflows/quic-interop-aws-lc.yml
index 28fb8fff1..51d5e3232 100644
--- a/.github/workflows/quic-interop-aws-lc.yml
+++ b/.github/workflows/quic-interop-aws-lc.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
@@ -61,7 +61,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