Azure Pipelines and GitHub Flashcards

1
Q

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

A

@azure pipelines subscribe https://dev.azure.com/MyOrganization/MyProject/ (No modification here)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which command can I launch to monitor all pipelines in a project inside Microsoft Teams?

A

@azure pipeline subscribe https://dev.azure.com/MyOrganization/MyProject

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which command will let you monitor a specific pipeline in a project in Microsoft Teams ?

A

@azure pipeline subscribe https://dev.azure.com/MyOrganization/MyProject/_build?definitionId=123

You can also use buildId/ReleaseId instead of definitionId

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you check your Azure Pipeline subscriptions inside Microsoft Teams?

A

Run the command @azure pipelines subscriptions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to unsubscribe from all Azure pipelines within a project in Microsoft Teams

A

Run the command

@azure pipeline unsubscribe all https://dev.azure.com/MyOrganization/MyProject
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to signing inside Azure Pipeline Account from Microsoft Teams? How to log out?

A

@azure pipelines signin
@azure pipelines signout

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How many steps are needed in order to configure integration between **Azure DevOps Server Project **and Microsoft Teams?

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can you configure verbose log for every run of an Azure Pipeline?

A

Add the following variable and value:
system.debug: true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In Azure Pipeline, how can you download a build log?

A

In your build
1. Click the Menu Icon on the upper right
2. Choose “Download Log”
It can be seen here:
Download Build Log

How well did you know this?
1
Not at all
2
3
4
5
Perfectly