Hello everyone. In my company, when we merge it automatically deploys too. My question: How do I stop deploying? I want to be able to manually deploy at the end of the sprint.
Thank you.
Hi @MahmudRahim
look at when
keyword you can use with a job. In your case it would be when: manual
. Ref docs.
Another option is to create a Tag when you want to deploy and use rules
in the job to make it run only for Tag pipelines.
2 Likes
Thank you Peter. I will try that.