You have an Azure DevOps project that contains a release pipeline and a Git repository.
When a new code revision is committed to the repository, a build and release is triggered.
You need to ensure that release information for the pipeline is added automatically to the work items associated to the Git commit.
What should you do?
Click on the arrows to vote for the correct answer
A. B. C. D.B
Configure your release definition to post deployment information to Work items.
1. Open Pipelines>Releases, choose to edit your release pipeline, then choose Options>Integrations.
To automatically add release information for a pipeline to work items associated with a Git commit, you need to set up a service hook. Service hooks are a feature of Azure DevOps that allow you to trigger external services or applications when certain events occur in your DevOps project.
The service hook you need to set up is the Release Created event. This event is triggered when a new release is created in your pipeline. You can configure the service hook to send information about the release to work items associated with the Git commit that triggered the pipeline.
To set up the service hook, follow these steps:
Once the service hook is set up, release information for the pipeline will be automatically added to work items associated with the Git commit that triggered the pipeline.