Source: levelup.gitconnected.com

Trigger a pipeline using a webhook
You have statically rendered your web app and want to trigger your build pipeline whenever there is any publish/unpublish action in the Content Management System (CMS) using a webhook. We’ll be storing our Function App code in Azure Repos Git and use Azure Pipelines to deploy our code to the created Function App. You can directly write your code in the Function App editor (not recommended).

Whenever there is any publish or unpublish action on the CMS, webhook will initiate a function app instance and the function app instance will trigger the DevOps pipeline.

It will trigger the function app and a new function app instance will be created.

Related Articles