(pipelines): Adding a ManualApprovalStep to a Wave
See original GitHub issueIt seems that the following code does not really add the ManualApprovalStep
before the build action. What would be the proper way to do this with the new CDK Pipelines?
pipeline.addWave('CustomWave', {
pre: [new pipelines.ManualApprovalStep('ManualApproval')],
post: [
new pipelines.CodeBuildStep('CustomWaveAction', {
projectName: 'CustomWaveActionBuild',
commands: [
// add rest of the commands here..
],
})],
});
Environment
- CDK CLI Version : 2.0.0-rc.17 (build fb5dc58)
- Framework Version: 2.0.0-rc.17 (build fb5dc58)
- Node.js Version: 14
- OS : macOS
- Language (Version): all
Other
This is 🐛 Bug Report
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (10 by maintainers)
Top Results From Across the Web
Add a manual approval action to a pipeline in CodePipeline
You can add an approval action to a stage in a CodePipeline pipeline at the point where you want the pipeline to stop...
Read more >Adding manual approval stage in CDK CodePipelines
Recently I have got a problem which I am unable to resolve. Went over documentations and resources but none had explained how to...
Read more >Is there a way to insert a manual approval in Jenkins 2 ...
Best partial solution so far: an input step in the pipeline which stops and asks the user for input (or to abort the...
Read more >Pipeline deployment approvals - Azure - Microsoft Learn
Select Create, provide the approvers and an optional message, and select Create again to complete the addition of the manual approval check. You ......
Read more >pipelines: specify dependencies between pre/post steps #17945
When adding multiple pre (or post) steps to a stage, ... a problem about adding a manual approval step using the pre/post commands...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ryparker any update on this?
Classifying as p2 since there is a workaround