previously that build were limited to "haproxy" github organization
only. let's allow manual builds from forks
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
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