CI: skip scheduled builds on forks

tracking bleeding edge changes with some rare platforms or modern
compilers on scheduled basis is not what usually forks do. let's
skip by default in forks, if some fork is interested, it might be
enabled locally
This commit is contained in:
Ilya Shipitsin 2024-02-21 17:05:39 +01:00 committed by Willy Tarreau
parent 6142a3fad7
commit e3af7f832c
2 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@ jobs:
}
]
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'haproxy' }}
steps:
- name: install packages
run: |

View File

@ -14,6 +14,7 @@ jobs:
cc: [ gcc, clang ]
name: ${{ matrix.cc }}
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'haproxy' }}
container:
image: fedora:rawhide
steps: