From 37118769f5d88c1432774d39fe833c69666b411c Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Mon, 7 Oct 2024 17:20:44 +0200 Subject: [PATCH] [CI] Disable the API breakage check (#647) ### Motivation This package doesn't have any library products that would need to maintain API stability, so we don't need to run the CI. We only have `_OpenAPIGeneratorCore`, which is underscored and not expected to be API stable (so it can only be used using an `exact: "..."` constraint). But we don't want to fail CI when we change that API (right now it's introducing noise in: https://github.com/apple/swift-openapi-generator/pull/627) ### Modifications Disable API breakage check. ### Result Disabled that CI step. ### Test Plan N/A --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 8c598a5a..5d6d85c3 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -9,7 +9,7 @@ jobs: name: Soundness uses: apple/swift-nio/.github/workflows/soundness.yml@main with: - api_breakage_check_enabled: true + api_breakage_check_enabled: false broken_symlink_check_enabled: true docs_check_enabled: true format_check_enabled: true