We’re running Azure DevOps 2025 and have a critical issue with our release pipeline. When requirements are updated in the requirements-mgmt module, the release pipeline should automatically trigger but it’s not happening. We’ve configured service hooks to monitor work item changes, and our YAML pipeline has trigger conditions for linked work items.
Our current pipeline trigger looks like this:
trigger:
branches:
include: [main]
resources:
repositories:
- repository: requirements
type: git
The service hook is configured to watch for work item updates with type ‘Requirement’, but releases are delayed by 4-6 hours until manual intervention. We’ve verified OAuth service connections are active. The work item linking between requirements and release definitions appears correct in the UI, but the automation chain is broken. Has anyone encountered similar issues with requirements triggering release pipelines in ado-2025?