Skip to content

Commit e54368f

Browse files
committed
step
1 parent 7079b1b commit e54368f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/package_core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,11 +300,11 @@ jobs:
300300

301301
verify-core:
302302
runs-on: ubuntu-latest
303-
if: cancelled() || contains(needs.*.result, 'failure')
304303
needs:
305304
- build-env
306305
- package-core
307306
- collect-logs
307+
if: cancelled() || needs.build-env.result == 'failure' || needs.package-core.result == 'failure' || needs.test-core.result == 'failure'
308308
steps:
309309
- name: Notify failure
310310
run: exit 1

0 commit comments

Comments
 (0)