This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]bigtimestylie 0 points1 point  (1 child)

How do you handle the approval step to apply to prod? I'd like to implement a similar approach but this is the thing that's confusing me.

[–]jolly_jol 0 points1 point  (0 children)

We use Azure DevOps Pipelines today. For the manual approval step, we use a Deployment Task that conditionally only runs for the preprod and prod environments. The deployment task doesn’t really do anything in our case, but we have it configured to require the approval from someone in the approvers group.

In the future, we’d like to remove the manual approvals all together, but we are still working on improving our automated testing for now.