File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ jobs:
357
357
with :
358
358
token : ${{ secrets.ACTION_MONITORING_SLACK }}
359
359
COVERAGE_DEBUG_NTS :
360
- if : github.repository == 'php/php-src' || github.event_name == 'workflow_dispatch '
360
+ if : inputs.branch == 'master '
361
361
services :
362
362
mysql :
363
363
image : mysql:8.3
@@ -385,6 +385,8 @@ jobs:
385
385
steps :
386
386
- name : git checkout
387
387
uses : actions/checkout@v4
388
+ with :
389
+ ref : ${{ inputs.branch }}
388
390
- name : Create MSSQL container
389
391
uses : ./.github/actions/setup-mssql
390
392
- name : apt
@@ -831,7 +833,7 @@ jobs:
831
833
with :
832
834
token : ${{ secrets.ACTION_MONITORING_SLACK }}
833
835
PECL :
834
- if : github.repository == 'php/php-src' || github.event_name == 'workflow_dispatch '
836
+ if : inputs.branch == 'master '
835
837
runs-on : ubuntu-22.04
836
838
env :
837
839
CC : ccache gcc
@@ -841,6 +843,7 @@ jobs:
841
843
uses : actions/checkout@v4
842
844
with :
843
845
path : php
846
+ ref : ${{ inputs.branch }}
844
847
- name : git checkout apcu
845
848
uses : actions/checkout@v4
846
849
with :
Original file line number Diff line number Diff line change 49
49
run_macos_arm64 : true
50
50
ubuntu_version : ' 22.04'
51
51
windows_version : ' 2022'
52
+ secrets : inherit
52
53
NIGHTLY_84 :
53
54
needs : GENERATE_MATRIX
54
55
if : contains(needs.GENERATE_MATRIX.outputs.branches, 'PHP-8.4')
62
63
run_macos_arm64 : true
63
64
ubuntu_version : ' 22.04'
64
65
windows_version : ' 2022'
66
+ secrets : inherit
65
67
NIGHTLY_83 :
66
68
needs : GENERATE_MATRIX
67
69
if : contains(needs.GENERATE_MATRIX.outputs.branches, 'PHP-8.3')
75
77
run_macos_arm64 : false
76
78
ubuntu_version : ' 22.04'
77
79
windows_version : ' 2019'
80
+ secrets : inherit
78
81
NIGHTLY_82 :
79
82
needs : GENERATE_MATRIX
80
83
if : contains(needs.GENERATE_MATRIX.outputs.branches, 'PHP-8.2')
88
91
run_macos_arm64 : false
89
92
ubuntu_version : ' 20.04'
90
93
windows_version : ' 2019'
94
+ secrets : inherit
91
95
NIGHTLY_81 :
92
96
needs : GENERATE_MATRIX
93
97
if : contains(needs.GENERATE_MATRIX.outputs.branches, 'PHP-8.1')
@@ -101,3 +105,4 @@ jobs:
101
105
run_macos_arm64 : false
102
106
ubuntu_version : ' 20.04'
103
107
windows_version : ' 2019'
108
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments