From 6f3a03df65af7f4acbbe950c7aa3e68a206ce187 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Wed, 9 Sep 2026 18:45:10 -0400 Subject: [PATCH] Don't block on API changes vs. the merge base of a PR --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 736db5748a4..fca92dc76d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -697,8 +697,8 @@ jobs: if [[ "$run_core_api_check" == "true" ]]; then expected="success"; fi check_result "api-check-core-vs-release" "$expected" - expected="skipped" - if [[ "$is_pr" == "true" && "$run_core_api_check" == "true" ]]; then expected="success"; fi - check_result "api-check-core-vs-base" "$expected" + # API compatibility checks against the merge base (api-check-core-vs-base) + # are purely informational, since it is fine for API to drift during development + # when it hasn't been released yet. [[ "$status" == "success" ]]