ci: Remove migration_checks
as a required check (#26833)
This PR removes the `migration_checks` job as a required check. This was not required before, and we shouldn't make it required, as there are cases where we need to bypass it, as is the case in https://github.com/zed-industries/zed/pull/26832. Release Notes: - N/A
This commit is contained in:
parent
8f841d1ab7
commit
b547cd1c70
1 changed files with 0 additions and 1 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -453,7 +453,6 @@ jobs:
|
|||
[[ "${{ needs.linux_tests.result }}" != 'success' ]] && { RET_CODE=1; echo "Linux tests failed"; }
|
||||
[[ "${{ needs.windows_tests.result }}" != 'success' ]] && { RET_CODE=1; echo "Windows tests failed"; }
|
||||
[[ "${{ needs.windows_clippy.result }}" != 'success' ]] && { RET_CODE=1; echo "Windows clippy failed"; }
|
||||
[[ "${{ needs.migration_checks.result }}" != 'success' ]] && { RET_CODE=1; echo "Migration checks failed"; }
|
||||
[[ "${{ needs.build_remote_server.result }}" != 'success' ]] && { RET_CODE=1; echo "Remote server build failed"; }
|
||||
fi
|
||||
if [[ "$RET_CODE" -eq 0 ]]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue