]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: QUIC Interop on AWS-LC: allow "on: workflow_dispatch" in forks
authorIlia Shipitsin <chipitsine@gmail.com>
Thu, 27 Mar 2025 21:29:20 +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-aws-lc.yml

index 28fb8fff1eb2f9bb4fe31a67c070b40963b85b6d..51d5e3232a840a154f6cf874bad1d3b573f2e248 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
@@ -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