Skip to content

Commit

Permalink
Merge pull request MicrosoftDocs#3735 from MicrosoftDocs/repo_sync_wo…
Browse files Browse the repository at this point in the history
…rking_branch

Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/azure-devops-docs (branch master)
  • Loading branch information
steved0x authored Sep 22, 2021
2 parents 2a72c58 + 64dd2bb commit 204186b
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 78 deletions.
2 changes: 1 addition & 1 deletion docs/pipelines/library/variable-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ monikerRange: '>= tfs-2017'

# Add & use variable groups

Variable groups store values and secrets that you might want to to be [passed into a YAML pipeline](variable-groups.md?tabs=yaml&view=azure-devops&preserve-view=true#use-a-variable-group) or make available across multiple pipelines. You can share use variables groups in multiple pipelines in the same project.
Variable groups store values and secrets that you might want to be [passed into a YAML pipeline](variable-groups.md?tabs=yaml&view=azure-devops&preserve-view=true#use-a-variable-group) or make available across multiple pipelines. You can share and use variables groups in multiple pipelines in the same project.

Variables groups are [protected resources](../security/resources.md). You can add approvals and checks to these variables and set pipeline permissions.

Expand Down
2 changes: 1 addition & 1 deletion docs/pipelines/process/pipeline-triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ resources:
source: Farbrikam-CI
trigger:
stages: # This stage filter is used when evaluating conditions for
- PreProduction # triggering your pipeine. On successful completion of all the stages
- PreProduction # triggering your pipeline. On successful completion of all the stages
- Production # provided, your pipeline will be triggered.
```

Expand Down
12 changes: 3 additions & 9 deletions docs/pipelines/repos/includes/ci-triggers5.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ When specifying a branch or tag, you may use an exact name or a wildcard.
Wildcards patterns allow `*` to match zero or more characters and `?` to match a single character.

* If you start your pattern with `*` in a YAML pipeline, you must wrap the pattern in quotes, like `"*-releases"`.
* For branches and tags:
* A wildcard may appear anywhere in the pattern.
* For paths:
* You may include `*` as the final character, but it doesn't do anything differently from specifying the directory name by itself.
* You may **not** include `*` in the middle of a path filter, and you may not use `?`.
* For branches, tags, and paths, a wildcard may appear anywhere in the pattern.

```yaml
trigger:
Expand All @@ -46,7 +42,5 @@ trigger:
- feature/*-working
paths:
include:
- '*' # same as '/' for the repository root
exclude:
- 'docs/*' # same as 'docs/'
```
- docs/*.md
```
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ An example is shown in the following image.

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build' "
Expand Down
25 changes: 10 additions & 15 deletions docs/report/powerbi/sample-test-analytics-failed-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ Specifically, you'll find sample queries for the following reports:

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build' "
Expand Down Expand Up @@ -272,9 +271,8 @@ You may want to view the failed tests of a pipeline for **Release** workflow, in

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Workflow), "
Expand Down Expand Up @@ -331,9 +329,8 @@ You may want to view the failed tests of a pipeline for a particular branch only

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -392,9 +389,8 @@ You may want to view the failed tests of a pipeline for a particular test file o

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Test/ContainerName), "
Expand Down Expand Up @@ -451,9 +447,8 @@ You may want to view the failed tests of a pipeline for tests owned by a particu

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Test/TestOwner), "
Expand Down
25 changes: 10 additions & 15 deletions docs/report/powerbi/sample-test-analytics-flaky-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ Specifically, you'll find sample queries for the following reports:

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineId eq 7813 "
&"And Date/Date ge 2020-02-04Z "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -270,9 +269,8 @@ You may want to view the flaky tests of a pipeline for **Release** workflow, ins

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Workflow), "
Expand Down Expand Up @@ -329,9 +327,8 @@ You may want to view the flaky tests of a pipeline for a particular branch only.

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -390,9 +387,8 @@ You may want to view the flaky tests of a pipeline for a particular test file on

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Test/ContainerName), "
Expand Down Expand Up @@ -449,9 +445,8 @@ You may want to view the flaky tests of a pipeline for tests owned by a particul

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Test/TestOwner), "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ An example is shown in the following image.

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Test/TestName eq '{testName}' "
Expand Down
25 changes: 10 additions & 15 deletions docs/report/powerbi/sample-test-analytics-test-duration.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ Specifically, you'll find sample queries for the following reports:

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build' "
Expand Down Expand Up @@ -252,9 +251,8 @@ You may want to view the test duration of all the tests of a pipeline for **Rele

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate}) "
&"/groupby((TestSK, Test/TestName, Workflow), "
Expand Down Expand Up @@ -303,9 +301,8 @@ You may want to view the test duration for all the tests of a pipeline for a par

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -356,9 +353,8 @@ You may want to view the test duration of all the tests of a pipeline for a part

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -409,9 +405,8 @@ You may want to view the test duration of all the tests of a pipeline for tests

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"And Date/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down
27 changes: 11 additions & 16 deletions docs/report/powerbi/sample-test-summary-trend.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ Specifically, you'll find sample queries for the following reports:

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestRuns?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"and CompletedOn/Date ge {startdate} "
&"and Workflow eq 'Build' "
Expand Down Expand Up @@ -262,10 +261,9 @@ You may want to view the test summary trend of a pipeline for **Release** workfl

```
let
Source = OData.Feed (""
in
Source
&"Pipeline/PipelineName eq '{pipelineName}' "
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestRuns?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"and CompletedOn/Date ge {startdate}) "
&"/groupby((Workflow, CompletedOn/Date), "
&"aggregate( "
Expand Down Expand Up @@ -317,9 +315,8 @@ You may want to view the test summary trend of a pipeline for a particular branc

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestRuns?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"and CompletedOn/Date ge {startdate} "
&"and Workflow eq 'Build') "
Expand Down Expand Up @@ -374,9 +371,8 @@ You may want to view the test summary trend of a pipeline for a particular test

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"and CompletedOn/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down Expand Up @@ -431,9 +427,8 @@ You may want to view the test summary trend of a pipeline for tests owned by a p

```
let
Source = OData.Feed (""
in
Source
Source = OData.Feed ("https://analytics.dev.azure.com/{organization}/{project}/_odata/v4.0-preview/TestResultsDaily?
$apply=filter("
&"Pipeline/PipelineName eq '{pipelineName}' "
&"and CompletedOn/Date ge {startdate} "
&"And Workflow eq 'Build') "
Expand Down

0 comments on commit 204186b

Please sign in to comment.