From 898c0684225f621946632079a162d3e5f2a495f2 Mon Sep 17 00:00:00 2001 From: Rico Huijbers Date: Sat, 22 Mar 2025 13:15:20 +0100 Subject: [PATCH] fix: release integ-runner when there are changes to cloud assembly or CLI This package is bundled, so when there are changes to the bundled packages it should be released as well. --- .projenrc.ts | 1 + packages/@aws-cdk/integ-runner/.projen/tasks.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.projenrc.ts b/.projenrc.ts index 67aa2692f..09d426e52 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -1406,6 +1406,7 @@ const integRunner = configureProject( }, }, }), + releasableCommits: transitiveToolkitPackages('@aws-cdk/integ-runner'), }), ); integRunner.gitignore?.addPatterns( diff --git a/packages/@aws-cdk/integ-runner/.projen/tasks.json b/packages/@aws-cdk/integ-runner/.projen/tasks.json index 119179fd3..f477e7804 100644 --- a/packages/@aws-cdk/integ-runner/.projen/tasks.json +++ b/packages/@aws-cdk/integ-runner/.projen/tasks.json @@ -32,7 +32,7 @@ "RELEASE_TAG_PREFIX": "@aws-cdk/integ-runner@", "VERSIONRCOPTIONS": "{\"path\":\".\"}", "BUMP_PACKAGE": "commit-and-tag-version@^12", - "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- ." + "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- . ../../aws-cdk ../tmp-toolkit-helpers ../cloud-assembly-schema ../cloudformation-diff" }, "steps": [ { @@ -198,7 +198,7 @@ "RELEASE_TAG_PREFIX": "@aws-cdk/integ-runner@", "VERSIONRCOPTIONS": "{\"path\":\".\"}", "BUMP_PACKAGE": "commit-and-tag-version@^12", - "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- ." + "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- . ../../aws-cdk ../tmp-toolkit-helpers ../cloud-assembly-schema ../cloudformation-diff" }, "steps": [ {