I am having a release pipeline in Azure Devops which will send my generated .msi file to a slack channel. This is a good way to give a running testable installation to my testers. The problem here is, that they don't know which User Stories are resolved and which they need to test. So is there a way to also send the closed User Stories / Tasks since the last Pull Request?
0
votes
1 Answers
1
votes
There are several ways to send the closed User Stories/Task to the testers.
For example you can create a query to get all the closed workitems. Query supports to email the query results. Please check the tutorial to create a query.
You can also send the query from the pipeline using Scheduled Work Item Query extenstion. Install this extension and then add Scheduled Work Item Query task in your pipeline.
If you want to retrieve the closed workitems by adding a script task in the pipeline to call rest api. You can refer to this thread.
You can also check out integration Azure Boards with Slack or Azure devops with Slack, which will send notifications for update workitem events in to Slack channel.
