From b547cd1c70f743062f4b1d5aef590b1b25887af4 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Sat, 15 Mar 2025 09:59:25 -0400 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 326a585945..23f6ca10c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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