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
This commit is contained in:
Ilia Shipitsin 2025-03-27 22:29:18 +01:00 committed by William Lallemand
parent 7495dbed22
commit 8231f58fdc

View File

@ -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: