Skip to content

Commit 4f0d4c0

Browse files
committed
[skip ci] Also skip all other push jobs on non php-src
1 parent 0e7ef95 commit 4f0d4c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ env:
4343
CXX: ccache g++
4444
jobs:
4545
LINUX_X64:
46-
if: github.repository_owner == 'php' || github.event_name == 'pull_request'
46+
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
4747
services:
4848
mysql:
4949
image: mysql:8
@@ -149,7 +149,7 @@ jobs:
149149
if: ${{ !matrix.asan }}
150150
uses: ./.github/actions/verify-generated-files
151151
MACOS_DEBUG_NTS:
152-
if: github.repository_owner == 'php' || github.event_name == 'pull_request'
152+
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
153153
strategy:
154154
fail-fast: false
155155
matrix:
@@ -191,7 +191,7 @@ jobs:
191191
- name: Verify generated files are up to date
192192
uses: ./.github/actions/verify-generated-files
193193
WINDOWS:
194-
if: github.repository_owner == 'php' || github.event_name == 'pull_request'
194+
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
195195
name: WINDOWS_X64_ZTS
196196
runs-on: windows-2019
197197
env:

0 commit comments

Comments
 (0)