From 7de45e387447290a53715c0bc5486fe8bebb4181 Mon Sep 17 00:00:00 2001 From: Ilia Shipitsin Date: Thu, 27 Mar 2025 22:29:19 +0100 Subject: [PATCH] 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 --- .github/workflows/netbsd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: