how to get push notifications in teams channel from bitbucket repository - when ever the pull requests are not reviewed by team mates need to get notification as "PR s are not reviewed since an hour"
Hello and welcome to Atlassian community @anusha mukta
A normal Bitbucket webhook alone won't quite cover this requirement.
Bitbucket webhooks are event-driven
One approach would be to create a scheduled Bitbucket pipeline that runs hourly.
https://support.atlassian.com/bitbucket-cloud/docs/pipeline-triggers/
The pipeline could query the Bitbucket REST API for open pull requests, check their creation time and reviewer/participant status, select PRs older than one hour without required approval/review, and send them to your Microsoft Teams channel.
Cheers
Arek 🤠
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.