Skip to content

Commit

Permalink
feat(CodePipelineActions): Add support for custom events in CodeCommi…
Browse files Browse the repository at this point in the history
…t 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*
  • Loading branch information
jolo-dev authored Jan 16, 2024
1 parent 0ab8c7c commit c3802c4
Show file tree
Hide file tree
Showing 16 changed files with 37,291 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { CodePipelineClient, StartPipelineExecutionCommand } from '@aws-sdk/client-codepipeline';
const codepipeline = new CodePipelineClient({});

export const handler = async () => {
const command = new StartPipelineExecutionCommand({
name: 'IntegCustomEventPipeline',
});
await codepipeline.send(command);
};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c3802c4

Please sign in to comment.