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

docs(codepipeline): fix module name in README "@aws-cdk/aws-codepipeline-actions" => "aws-cdk-lib/aws-codepipeline-actions" #26057

Merged
merged 2 commits into from
Jun 23, 2023
Merged
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/aws-codepipeline/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ this stage automatically. The transition can then be "manually" enabled later on

## Actions

Actions live in a separate package, `@aws-cdk/aws-codepipeline-actions`.
Actions live in a separate package, `aws-cdk-lib/aws-codepipeline-actions`.

To add an Action to a Stage, you can provide it when creating the Stage,
in the `actions` property,
Expand All @@ -130,7 +130,7 @@ sourceStage.addAction(someAction);

## Custom Action Registration

To make your own custom CodePipeline Action requires registering the action provider. Look to the `JenkinsProvider` in `@aws-cdk/aws-codepipeline-actions` for an implementation example.
To make your own custom CodePipeline Action requires registering the action provider. Look to the `JenkinsProvider` in `aws-cdk-lib/aws-codepipeline-actions` for an implementation example.

```ts
// Make a custom CodePipeline Action
Expand Down Expand Up @@ -413,7 +413,7 @@ new OtherAction({
});
```

Check the documentation of the `@aws-cdk/aws-codepipeline-actions`
Check the documentation of the `aws-cdk-lib/aws-codepipeline-actions`
for details on how to use the variables for each action class.

See the [CodePipeline documentation](https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-variables.html)
Expand Down