Reputation: 2035
I have a release pipeline defined in Azure DevOps. Pre-deployment approval has been configured in order for the release to be completed.
If approval is rejected, I want to perform some action, maybe run a Python script.
How can I achieve this, within the pipeline itself or otherwise?
Upvotes: 1
Views: 320
Reputation: 16133
You may consider using Service Hooks (Integrate with service hooks, Create a service hook subscription programmatically):
Upvotes: 2