From: Ilia Shipitsin Date: Thu, 27 Mar 2025 21:29:19 +0000 (+0100) Subject: CI: NetBSD: allow "on: workflow_dispatch" in forks X-Git-Tag: v3.2-dev9~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7de45e387447290a53715c0bc5486fe8bebb4181;p=thirdparty%2Fhaproxy.git CI: NetBSD: 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/netbsd.yml b/.github/workflows/netbsd.yml index bb1c5cc85..b15a6dc9a 100644 --- a/.github/workflows/netbsd.yml +++ b/.github/workflows/netbsd.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: