File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -151,16 +151,18 @@ jobs:
151151 if : github.event_name == 'pull_request' && always()
152152 needs :
153153 - build
154+ - test
154155 - integration-test
155156 - markdown-lint-check
156157 - misspell-check
157158 - shell-script-check
158159 runs-on : ubuntu-latest
159160 steps :
160- # only the " build" and "integration- test" checks are required for release branch PRs in order
161+ # only the build and test checks are required for release branch PRs in order
161162 # to avoid any unnecessary release branch maintenance (especially for patches)
162163 - if : |
163164 needs.build.result != 'success' ||
165+ needs.test.result != 'success' ||
164166 needs.integration-test.result != 'success' ||
165167 (
166168 !startsWith(github.base_ref, 'release/') &&
You can’t perform that action at this time.
0 commit comments