Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(CodePipelineActions): Add support for custom events in CodeCommit source action #28008

Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dd605f7
Add support for custom events in CodeCommit source action
Nov 15, 2023
6a5645c
Update CodeCommitSourceAction to support custom event rules
Nov 15, 2023
9ce0836
Add support for custom events in CodeCommitSourceAction
Nov 15, 2023
de2550b
Add CodeCommit source action with custom event rule
Nov 15, 2023
b005521
Update stack name in codepipeline codecommit custom event test
Nov 15, 2023
fd69fc8
Add custom events to codecommit source action
Nov 17, 2023
0ffba5e
Adjusted readme
Nov 30, 2023
26771fc
Merge pull request #2 from jolo-dev/11-30-Adjusted_readme
jolo-dev Nov 30, 2023
f259cb8
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
jolo-dev Nov 30, 2023
de25cb0
Adjust Readme
Nov 30, 2023
28f701a
Adjust Readme
Nov 30, 2023
2872136
Adjust Readme
Nov 30, 2023
e252957
Fix missing semicolon in import statement
Nov 30, 2023
9ac01e8
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
jolo-dev Nov 30, 2023
2a76327
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
jolo-dev Dec 4, 2023
00e9da1
Update packages/aws-cdk-lib/aws-codepipeline-actions/lib/codecommit/s…
jolo-dev Jan 13, 2024
8ddb513
Update packages/aws-cdk-lib/aws-codepipeline-actions/lib/codecommit/s…
jolo-dev Jan 13, 2024
12691c9
Refactor ICustomEventRule interface for clarity
Jan 13, 2024
458fce4
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
jolo-dev Jan 13, 2024
9b70d65
remove trailing space
paulhcsun Jan 15, 2024
b32958a
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
paulhcsun Jan 15, 2024
e873657
Update packages/aws-cdk-lib/aws-codepipeline-actions/README.md
jolo-dev Jan 16, 2024
2e379f8
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
jolo-dev Jan 16, 2024
d2616f5
Merge branch 'main' into jolo-dev/custom-event-for-codepipeline-codec…
paulhcsun Jan 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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