From f805ef8cca86f63d0ff3b964079c4b339ae7563f Mon Sep 17 00:00:00 2001 From: Michael Sambol Date: Sun, 5 May 2024 16:44:45 -0600 Subject: [PATCH] Fix readme --- packages/aws-cdk-lib/aws-codebuild/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-codebuild/README.md b/packages/aws-cdk-lib/aws-codebuild/README.md index a659f670620cd..81dd0e161c18e 100644 --- a/packages/aws-cdk-lib/aws-codebuild/README.md +++ b/packages/aws-cdk-lib/aws-codebuild/README.md @@ -69,12 +69,10 @@ const gitHubSource = codebuild.Source.gitHub({ .inEventOf(codebuild.EventAction.PUSH) .andBranchIs('main') .andCommitMessageIs('the commit message'), - ], // optional, by default all pushes and Pull Requests will trigger a build - [ codebuild.FilterGroup .inEventOf(codebuild.EventAction.RELEASED) .andBranchIs('main') - ], + ], // optional, by default all pushes and Pull Requests will trigger a build }); ```