From 4f0d4c087287f47dd043724684331afbdf8a200b Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Sun, 21 Apr 2024 16:00:48 +0200 Subject: [PATCH] [skip ci] Also skip all other push jobs on non php-src --- .github/workflows/push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 3427cd800b7..d07da175473 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -43,7 +43,7 @@ env: CXX: ccache g++ jobs: LINUX_X64: - if: github.repository_owner == 'php' || github.event_name == 'pull_request' + if: github.repository == 'php/php-src' || github.event_name == 'pull_request' services: mysql: image: mysql:8 @@ -149,7 +149,7 @@ jobs: if: ${{ !matrix.asan }} uses: ./.github/actions/verify-generated-files MACOS_DEBUG_NTS: - if: github.repository_owner == 'php' || github.event_name == 'pull_request' + if: github.repository == 'php/php-src' || github.event_name == 'pull_request' strategy: fail-fast: false matrix: @@ -191,7 +191,7 @@ jobs: - name: Verify generated files are up to date uses: ./.github/actions/verify-generated-files WINDOWS: - if: github.repository_owner == 'php' || github.event_name == 'pull_request' + if: github.repository == 'php/php-src' || github.event_name == 'pull_request' name: WINDOWS_X64_ZTS runs-on: windows-2019 env: