-
Notifications
You must be signed in to change notification settings - Fork 4k
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(codepipeline): introduce the Action abstract class #14009
Conversation
8a97159
to
c2b26ff
Compare
Add an officially supported class to the API of the CodePipeline module that contains some logic common to all implementations of the `IAction` interface, like dealing with variable namespaces, or methods like `onStateChange()`. Make the experimental class in codepipeline-actions with the same name extend this new class, and make it stable.
c2b26ff
to
be22cc8
Compare
@rix0rrr incorporated your comments, would appreciate a re-review! |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Add an officially supported class to the API of the CodePipeline module that contains some logic common to all implementations of the `IAction` interface, like dealing with variable namespaces, or methods like `onStateChange()`. There was previously a class like that in the codepipeline-actions module, but it was marked experimental, and had some strong opinions on the construction way of the subclasses (required passing the `actionProperties` through a `super()` call in the constructor, which is not very flexible). ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Add an officially supported class to the API of the CodePipeline module
that contains some logic common to all implementations of the
IAction
interface,like dealing with variable namespaces, or methods like
onStateChange()
.There was previously a class like that in the codepipeline-actions module,
but it was marked experimental, and had some strong opinions on the construction way of the subclasses
(required passing the
actionProperties
through asuper()
call in the constructor,which is not very flexible).
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license