Azure Pipelines and GitHub Flashcards
Developers should receive Microsoft Teams notifications when there are failures in a Pipeline
Complete the command below:
@azure pipeline ??? https://dev.azure.com/MyOrganization/MyProject/ ???
First term:
1. feedback
2. signin
3. subscribe
4. subscriptions
Second term:
1. No modification
2. _build
3. _packaging
4. _work-items
@azure pipelines subscribe https://dev.azure.com/MyOrganization/MyProject/ (No modification here)
Which command can I launch to monitor all pipelines in a project inside Microsoft Teams?
@azure pipeline subscribe https://dev.azure.com/MyOrganization/MyProject
Which command will let you monitor a specific pipeline in a project in Microsoft Teams ?
@azure pipeline subscribe https://dev.azure.com/MyOrganization/MyProject/_build?definitionId=123
You can also use buildId/ReleaseId instead of definitionId
How can you check your Azure Pipeline subscriptions inside Microsoft Teams?
Run the command @azure pipelines subscriptions
How to unsubscribe from all Azure pipelines within a project in Microsoft Teams
Run the command
@azure pipeline unsubscribe all https://dev.azure.com/MyOrganization/MyProject
How to signing inside Azure Pipeline Account from Microsoft Teams? How to log out?
@azure pipelines signin
@azure pipelines signout
How many steps are needed in order to configure integration between **Azure DevOps Server Project **and Microsoft Teams?
It is a two steps integration:
1. Set up a connector in Teams
2. Set up one or more service hook subscriptions in Azure DevOps Server Project
How can you configure verbose log for every run of an Azure Pipeline?
Add the following variable and value:
system.debug: true
In Azure Pipeline, how can you download a build log?
In your build
1. Click the Menu Icon on the upper right
2. Choose “Download Log”
It can be seen here:
Download Build Log