]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: QUIC Interop on LibreSSL: allow "on: workflow_dispatch" in forks
authorIlia Shipitsin <chipitsine@gmail.com>
Thu, 27 Mar 2025 21:29:21 +0000 (22:29 +0100)
committerWilliam Lallemand <wlallemand@haproxy.com>
Fri, 28 Mar 2025 08:51:35 +0000 (09:51 +0100)
previously that build were limited to "haproxy" github organization
only. let's allow manual builds from forks

.github/workflows/quic-interop-libressl.yml

index 166069bca46a17a4ed5f5ed96192526a83423fd0..96ea1995be56876cfbc9f420d056639925fb966f 100644 (file)
@@ -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