Deployment review not working for consecutive jobs cofnigured with environments #131490
Replies: 2 comments 3 replies
-
To reduce the need for multiple deployment reviews in your GitHub Actions workflow, you can consolidate the deployment of Service 1 and Service 2 into a single job. This way, the approval for the environment applies to the entire deployment process, not just one part of it. Here's how you can adjust your workflow:
|
Beta Was this translation helpful? Give feedback.
-
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
Body
Problem Statement:
Multiple state of approval required for jobs which are configured with
Environment
.I have a 2 jobs in a workflow which uses environment i.e. dev/uat/prod.
Here,
deploy-service2
needsdeploy-service1
to be completed but both are configured with same environment. When the pipeline is triggered, some reviewers get deployment approval fordeploy-service1
job and once they provide approval for the job, it works only fordeploy-service1
.When
deploy-service1
is completed, it again ask for the review fordeploy-service2
which is annoying as reviewers has to involve for multiple stage of review for single workflow.I am looking for some ways to bypass this approval so that reviewers don't have to involve for same workflow again and again. Any help would be appreciated. Thank you.
Beta Was this translation helpful? Give feedback.
All reactions