From: Ilia Shipitsin Date: Thu, 27 Mar 2025 21:29:18 +0000 (+0100) Subject: CI: Illumos: allow "on: workflow_dispatch" in forks X-Git-Tag: v3.2-dev9~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8231f58fdc33b0250dab7c2ee022f5589fdece20;p=thirdparty%2Fhaproxy.git CI: Illumos: allow "on: workflow_dispatch" in forks previously that build were limited to "haproxy" github organization only. let's allow manual builds from forks --- diff --git a/.github/workflows/illumos.yml b/.github/workflows/illumos.yml index 0d4d5a3de..2bcc9d9f3 100644 --- a/.github/workflows/illumos.yml +++ b/.github/workflows/illumos.yml @@ -8,7 +8,7 @@ on: jobs: gcc: runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'haproxy' }} + if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }} permissions: contents: read steps: