Skip to content

Commit f845b41

Browse files
committed
GH-47069: [Release] Add missing "needs: target" (#47070)
### Rationale for this change We need `needs: target` for jobs that use the `target` job outputs. ### What changes are included in this PR? Add missing `needs: target`s. ### Are these changes tested? No. ### Are there any user-facing changes? No. * GitHub Issue: #47069 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 1c08f8e commit f845b41

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/verify_rc.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ env:
4141

4242
jobs:
4343
target:
44+
name: Target
4445
runs-on: ubuntu-latest
4546
timeout-minutes: 5
4647
outputs:
@@ -74,8 +75,8 @@ jobs:
7475
echo "rc=${rc}" >> "${GITHUB_OUTPUT}"
7576
7677
apt:
77-
needs: target
7878
name: APT
79+
needs: target
7980
runs-on: ${{ matrix.runs-on }}
8081
timeout-minutes: 30
8182
strategy:
@@ -103,6 +104,7 @@ jobs:
103104
104105
binary:
105106
name: Binary
107+
needs: target
106108
runs-on: ubuntu-latest
107109
timeout-minutes: 30
108110
env:
@@ -117,6 +119,7 @@ jobs:
117119
118120
wheels-linux:
119121
name: Wheels Linux
122+
needs: target
120123
runs-on: ubuntu-latest
121124
timeout-minutes: 30
122125
strategy:
@@ -164,6 +167,7 @@ jobs:
164167
165168
wheels-macos:
166169
name: Wheels macOS
170+
needs: target
167171
runs-on: ${{ matrix.runs-on }}
168172
timeout-minutes: 30
169173
strategy:
@@ -186,6 +190,7 @@ jobs:
186190
187191
wheels-windows:
188192
name: Wheels Windows
193+
needs: target
189194
runs-on: windows-latest
190195
timeout-minutes: 45
191196
env:
@@ -214,6 +219,7 @@ jobs:
214219
215220
yum:
216221
name: Yum
222+
needs: target
217223
runs-on: ${{ matrix.runs-on }}
218224
timeout-minutes: 30
219225
strategy:

0 commit comments

Comments
 (0)