feat: Add AWS CodePipeline Get Pipeline Execution component#3225
Merged
forestileao merged 4 commits intosuperplanehq:mainfrom Feb 23, 2026
Merged
Conversation
Signed-off-by: manasa <manasa.bhagwat.work@gmail.com>
Signed-off-by: manasa <manasa.bhagwat.work@gmail.com>
…cution Signed-off-by: manasa <manasa.bhagwat.work@gmail.com>
11 tasks
Contributor
Author
|
Hi @forestileao This is pr ready for review when you get a chance. Adds the |
Collaborator
|
@manasa-bhagwat You will need to fix the conflicts due to the merge of #3220 |
Contributor
Author
Thanks @forestileao! Resolved the conflicts myself. |
forestileao
approved these changes
Feb 23, 2026
Collaborator
|
@manasa-bhagwat Thanks again! The PR is merged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements #2753
This PR adds the
aws.codepipeline.getPipelineExecutioncomponent, which retrieves the status and details of a specific AWS CodePipeline execution using the GetPipelineExecution API.What
The component returns the full execution details including status, status summary, trigger info, artifact revisions, execution mode/type, pipeline name, and pipeline version. It is a simple synchronous one-shot read — no polling, no EventBridge, no cancel. The Execution ID field supports expressions, enabling dynamic wiring from a preceding Run Pipeline component.
Backend
pkg/integrations/aws/codepipeline/get_pipeline_execution.go— component (allcore.Componentmethods)pkg/integrations/aws/codepipeline/client.go—GetPipelineExecutionDetails()method,GetPipelineExecutionDetailsResponsestruct (existing typedGetPipelineExecution()used by RunPipeline is untouched)pkg/integrations/aws/codepipeline/get_pipeline_execution_test.go— Setup + Execute testspkg/integrations/aws/codepipeline/example_output_get_pipeline_execution.json— example outputpkg/integrations/aws/codepipeline/example.go—ExampleOutput()wiringpkg/integrations/aws/aws.go— registered inComponents()Frontend
web_src/src/pages/workflowv2/mappers/aws/codepipeline/get_pipeline_execution.ts— canvas mapperweb_src/src/pages/workflowv2/mappers/aws/index.ts— registered mapper + state registryDocs
docs/components/AWS.mdx— generated withmake gen.components.docsTests
Demo
Get.Pipeline.Execution.-.Demo.SuperPlane.mp4