From ccafe223ae3f72c9ecc66d7282cdcd06965206a5 Mon Sep 17 00:00:00 2001 From: 0marperez <60363173+0marperez@users.noreply.github.com> Date: Fri, 26 Sep 2025 11:29:45 -0400 Subject: [PATCH 1/2] Revert "feat: remove deprecated shapes check (#1692)" This reverts commit 57876c9483b3ab86f411ba2bc6aff89a7fbc954a. --- .../workflows/remove-deprecated-shapes.yml | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/remove-deprecated-shapes.yml diff --git a/.github/workflows/remove-deprecated-shapes.yml b/.github/workflows/remove-deprecated-shapes.yml deleted file mode 100644 index c2dfe851872..00000000000 --- a/.github/workflows/remove-deprecated-shapes.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Remove deprecated shapes check -on: - pull_request: - types: [ opened, synchronize, reopened, labeled, unlabeled ] - branches: [ main ] - -jobs: - remove-deprecated-shapes: - # Only runs if the deprecated-shape-cutoff-date was not updated - if: ${{ !contains(github.event.pull_request.labels.*.name, 'updated-deprecated-shape-cutoff-date') }} - permissions: {} - runs-on: ubuntu-latest - steps: - - name: Update deprecated shape cutoff date - run: | - # Only continue on branches starting with vX.X (e.g. v1.2, v1.2.3, v1.2-main) - if [[ ! "${{ github.head_ref }}" =~ ^v[0-9]+\.[0-9]+.*$ ]]; then - exit 0 - fi - - echo "Please update the deprecated shape cutoff date and add the 'updated-deprecated-shape-cutoff-date' label" - echo "It must be set to the release date of the current minor version" - echo "See: https://github.com/aws/aws-sdk-kotlin/blob/8df78fb048ddc40120c8fe370cd3e0d35c077b2b/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/sdk/Util.kt#L16" - exit 1 From ea725d226dc473dc9a2d67ed38a4cd7b6407ae07 Mon Sep 17 00:00:00 2001 From: 0marperez Date: Fri, 26 Sep 2025 12:03:22 -0400 Subject: [PATCH 2/2] re-trigger CI