Skip to content

Commit c3802c4

Browse files
authored
feat(CodePipelineActions): Add support for custom events in CodeCommit source action (#28008)
Custom Events were added to the CodeCommit Source action to trigger pipelines via custom event rules. Closes [#12045](#12045). ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 0ab8c7c commit c3802c4

File tree

16 files changed

+37291
-3
lines changed

16 files changed

+37291
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { CodePipelineClient, StartPipelineExecutionCommand } from '@aws-sdk/client-codepipeline';
2+
const codepipeline = new CodePipelineClient({});
3+
4+
export const handler = async () => {
5+
const command = new StartPipelineExecutionCommand({
6+
name: 'IntegCustomEventPipeline',
7+
});
8+
await codepipeline.send(command);
9+
};

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-code-commit-custom-event.js.snapshot/IntegTestDefaultTestDeployAssertE3E7D2A4.assets.json

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)