From 0121c85abca310db5f0b0f59cedc7731053e7c38 Mon Sep 17 00:00:00 2001 From: Mohamed Wane Date: Mon, 6 Jul 2026 23:49:03 +0000 Subject: [PATCH 1/2] Skip the broken Stainless csharp SDK target so spec PRs stop failing CI --- .stainless/stainless.yml | 3 +++ mintlify/openapi.yaml | 2 +- openapi.yaml | 2 +- openapi/components/schemas/common/GtqAccountInfoBase.yaml | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.stainless/stainless.yml b/.stainless/stainless.yml index 85db268ed..e94db9af3 100644 --- a/.stainless/stainless.yml +++ b/.stainless/stainless.yml @@ -58,6 +58,9 @@ targets: package_name: grid production_repo: null csharp: + # Skipped: Stainless's csharp build CI fails on any freshly generated code, + # failing the SDK preview check on every spec-changing PR. Unpublished target. + skip: true edition: csharp.2025-10-08 package_name: grid production_repo: null diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index c6ad7a6f0..51d557343 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -12356,7 +12356,7 @@ components: - SAVINGS bankName: type: string - description: The name of the bank + description: The name of the beneficiary's bank minLength: 1 maxLength: 255 example: diff --git a/openapi.yaml b/openapi.yaml index c6ad7a6f0..51d557343 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -12356,7 +12356,7 @@ components: - SAVINGS bankName: type: string - description: The name of the bank + description: The name of the beneficiary's bank minLength: 1 maxLength: 255 example: diff --git a/openapi/components/schemas/common/GtqAccountInfoBase.yaml b/openapi/components/schemas/common/GtqAccountInfoBase.yaml index 2aa3f12a6..2ec3cc208 100644 --- a/openapi/components/schemas/common/GtqAccountInfoBase.yaml +++ b/openapi/components/schemas/common/GtqAccountInfoBase.yaml @@ -22,7 +22,7 @@ properties: - SAVINGS bankName: type: string - description: The name of the bank + description: The name of the beneficiary's bank minLength: 1 maxLength: 255 example: From c2087abdf74b3cd8b332ed7562794df9ee194639 Mon Sep 17 00:00:00 2001 From: Mohamed Wane Date: Mon, 6 Jul 2026 23:55:29 +0000 Subject: [PATCH 2/2] Retrigger CI: second data point that the csharp skip holds Co-Authored-By: Claude Fable 5