From 807fce608c2e8413cd0a90cc5ed121942afbfcbe Mon Sep 17 00:00:00 2001 From: Kaizen Conroy <36202692+kaizencc@users.noreply.github.com> Date: Wed, 20 May 2026 14:14:16 -0400 Subject: [PATCH 1/3] Remove duplicate 'toolkit-lib' entry Removed duplicate entry for 'toolkit-lib' in the pull request lint workflow. --- .github/workflows/pull-request-lint.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml index c108e9776..e62a4f179 100644 --- a/.github/workflows/pull-request-lint.yml +++ b/.github/workflows/pull-request-lint.yml @@ -49,7 +49,6 @@ jobs: integ-runner integ-testing toolkit-lib - toolkit-lib yarn-cling requireScope: false contributorStatement: From dd33a0eea463a3ad29c9f14f2286168e455b023f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 18:21:53 +0000 Subject: [PATCH 2/3] chore: self mutation Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/pull-request-lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml index e62a4f179..c108e9776 100644 --- a/.github/workflows/pull-request-lint.yml +++ b/.github/workflows/pull-request-lint.yml @@ -49,6 +49,7 @@ jobs: integ-runner integ-testing toolkit-lib + toolkit-lib yarn-cling requireScope: false contributorStatement: From 9df05315944055859c5b3cc0213e103af1fa1706 Mon Sep 17 00:00:00 2001 From: Kaizen Conroy Date: Fri, 22 May 2026 10:06:17 -0400 Subject: [PATCH 3/3] fix: remove hardcoded 'toolkit-lib' scope that duplicates subprojects entry The 'toolkit-lib' scope was listed both explicitly and generated from subprojects (via @aws-cdk/toolkit-lib -> toolkit-lib). Projen self-mutation kept re-adding the duplicate. Remove the hardcoded entry since it's already picked up from the subprojects list. --- .github/workflows/pull-request-lint.yml | 1 - .projenrc.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml index c108e9776..e62a4f179 100644 --- a/.github/workflows/pull-request-lint.yml +++ b/.github/workflows/pull-request-lint.yml @@ -49,7 +49,6 @@ jobs: integ-runner integ-testing toolkit-lib - toolkit-lib yarn-cling requireScope: false contributorStatement: diff --git a/.projenrc.ts b/.projenrc.ts index 670505a4e..2c1c94722 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -1784,7 +1784,6 @@ repoProject.github?.tryFindWorkflow('pull-request-lint')?.file?.patch( 'docs', 'bootstrap', 'integ-testing', - 'toolkit-lib', ...repoProject.subprojects .filter(p => p instanceof yarn.TypeScriptWorkspace) .map(p => p.name)